/* ═════════════════════════════════════════════════════════════════════ */
/* UNIVERSAL VARIABLES & RESET */
/* ═════════════════════════════════════════════════════════════════════ */

:root {
    --gold: #C59D5F;
    --dark: #111111;
    --light-bg: #F8F6F2;
    --text: #444444;
    --border: #E7E1D8;
    --white: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--white);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: 0.3s ease;
}

/* ═════════════════════════════════════════════════════════════════════ */
/* TYPOGRAPHY */
/* ═════════════════════════════════════════════════════════════════════ */

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--dark);
    margin-bottom: 16px;
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 14px;
}

h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
}

h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark);
}

p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text);
}

.subtitle {
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.gold-line {
    width: 50px;
    height: 2px;
    background: var(--gold);
    margin: 16px 0 20px;
}

.gold-line-small {
    width: 35px;
    height: 2px;
    background: var(--gold);
    margin: 12px 0 18px;
}

/* ═════════════════════════════════════════════════════════════════════ */
/* NAVIGATION */
/* ═════════════════════════════════════════════════════════════════════ */

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 5%;
    background: #ffffff;
    border-bottom: 1px solid #eeeeee;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

nav .logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

nav .logo img {
    height: 52px;
    width: auto;
    display: block;
    object-fit: contain;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
    margin: 0;
    padding: 0;
    align-items: center;
}

nav ul li a {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #444444;
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
    padding-bottom: 3px;
    border-bottom: 2px solid transparent;
}

nav ul li a:hover {
    color: #C59D5F;
    border-bottom: 2px solid #C59D5F;
}

nav ul li a.active {
    color: #C59D5F;
    font-weight: 600;
    border-bottom: 2px solid #C59D5F;
}

/* Hamburger Button */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
    z-index: 1100;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: #111;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ═════════════════════════════════════════════════════════════════════ */
/* BUTTONS */
/* ═════════════════════════════════════════════════════════════════════ */

.btn,
.btn-solid,
.btn-solid-gold,
.btn-gold,
.btn-outline,
.btn-submit,
.btn-view-all,
.btn-outline-white,
.btn-outline-dark-gallery,
.link-gold,
.srv-card-body .link-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 28px;
    border: none;
    border-radius: 4px;
    font-weight: 700;
    letter-spacing: 0.8px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-transform: uppercase;
}

.btn-solid,
.btn-solid-gold,
.btn-gold,
.btn-view-all,
.services-cta-right .btn-solid-gold,
.cta-btn-gold {
    background: var(--gold);
    color: var(--white);
    border: 2px solid var(--gold);
}

.btn-solid:hover,
.btn-solid-gold:hover,
.btn-gold:hover,
.btn-view-all:hover,
.services-cta-right .btn-solid-gold:hover,
.cta-btn-gold:hover {
    background: transparent;
    color: var(--gold);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--gold);
}

.btn-submit {
    width: 100%;
    background: linear-gradient(90deg, #111, #232323);
    color: var(--white);
    border: 1px solid #222;
    padding: 16px;
}

.btn-submit:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
}

.btn-outline-white {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-outline-white:hover {
    background: #fff;
    color: #111;
}

.btn-outline-dark-gallery {
    background: transparent;
    color: #111;
    border: 2px solid #111;
}

.btn-outline-dark-gallery:hover {
    background: #111;
    color: #fff;
}

.link-gold,
.srv-card-body .link-gold {
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--gold);
}

.link-gold:hover,
.srv-card-body .link-gold:hover {
    color: var(--dark);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 28px;
    border: 2px solid #111;
    border-radius: 4px;
    background: transparent;
    color: #111;
    font-weight: 700;
    letter-spacing: 0.8px;
    font-size: 0.9rem;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
}

.btn-whatsapp:hover {
    background: #111;
    color: #fff;
}

.btn-whatsapp.light {
    border-color: #fff;
    color: #fff;
}

.btn-whatsapp.light:hover {
    background: #fff;
    color: #111;
}

/* ═════════════════════════════════════════════════════════════════════ */
/* HERO SECTIONS */
/* ═════════════════════════════════════════════════════════════════════ */

.hero,
.about-hero,
.contact-hero,
.page-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 80px 5%;
    align-items: center;
    min-height: 500px;
}

.hero-left,
.hero-right,
.about-hero-left,
.about-hero-right,
.contact-hero-left,
.contact-hero-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-left h1,
.about-hero-left h1,
.contact-hero-left h1 {
    line-height: 1.15;
    margin-bottom: 18px;
}

.hero-left p,
.about-hero-left p,
.contact-hero-left p {
    font-size: 1.05rem;
    color: #666;
    max-width: 480px;
}

.hero-right img,
.about-hero-right img,
.contact-hero-right img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 8px;
}

/* ═════════════════════════════════════════════════════════════════════ */
/* CARDS & BOXES */
/* ═════════════════════════════════════════════════════════════════════ */

.card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 26px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

.card-light { background: var(--light-bg); }

.card-dark {
    background: var(--dark);
    border-color: rgba(255,255,255,0.1);
    color: var(--white);
}

.info-card { background: var(--light-bg); }
.form-card { background: var(--white); }

/* ═════════════════════════════════════════════════════════════════════ */
/* SECTIONS */
/* ═════════════════════════════════════════════════════════════════════ */

.section-light {
    background: var(--light-bg);
    padding: 80px 5%;
}

.section-dark {
    background: var(--dark);
    color: var(--white);
    padding: 80px 5%;
}

.section-white {
    background: var(--white);
    padding: 80px 5%;
}

/* ═════════════════════════════════════════════════════════════════════ */
/* FOOTER */
/* ═════════════════════════════════════════════════════════════════════ */

footer,
.advanced-footer {
    background: var(--dark);
    color: var(--white);
    padding: 50px 5% 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
    gap: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 20px;
}

.f-col h3,
.f-col h4 {
    color: var(--white);
    margin-bottom: 14px;
}

.f-col p,
.f-col a {
    color: #C9C9C9;
    font-size: 0.92rem;
    margin-bottom: 8px;
    display: block;
}

.contact-col p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    white-space: normal;
    word-break: break-word;
    color: #C9C9C9;
    font-size: 0.92rem;
}

.contact-col i {
    min-width: 16px;
    text-align: center;
    flex-shrink: 0;
    color: var(--gold);
    margin-top: 3px;
}

.f-col a:hover {
    color: var(--gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    color: #999;
    font-size: 0.85rem;
}

.socials {
    display: flex;
    gap: 12px;
    margin: 12px 0;
    flex-wrap: wrap;
}

.socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    padding: 0;
    color: #fff;
}

.socials a:hover {
    background: var(--gold);
    color: #fff;
}

/* ═════════════════════════════════════════════════════════════════════ */
/* CONTACT PAGE */
/* ═════════════════════════════════════════════════════════════════════ */

.contact-main {
    padding: 28px 5% 50px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 24px;
    align-items: start;
}

.contact-info-card {
    background: var(--light-bg);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid #e8e2d9;
}

.contact-info-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #111;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid #E8E2D9;
}

.info-item:last-of-type {
    border-bottom: none;
}

.info-item-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--dark);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.info-text {
    min-width: 0;
}

.info-text h4 {
    font-size: 0.98rem;
    color: #111;
    margin-bottom: 4px;
}

.info-text p {
    font-size: 0.93rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
    word-break: break-word;
}

.info-text a {
    color: var(--gold);
}

.info-text a:hover {
    color: var(--dark);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #111;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    transition: all 0.3s;
    padding: 0;
}

.social-links a:hover {
    background: #C59D5F;
    color: #fff;
}

.map-container {
    margin-top: 30px;
    border-radius: 6px;
    overflow: hidden;
    height: 220px;
    border: 1px solid #e8e2d9;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-form-card {
    background: #fff;
    padding: 40px;
    border: 1px solid #e8e2d9;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.contact-form-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #111;
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 18px;
}

.form-row.full {
    grid-template-columns: 1fr;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #111;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 14px 12px;
    font-size: 0.95rem;
    font-family: 'Montserrat', sans-serif;
    background: #fff;
    color: #333;
    outline: none;
    transition: 0.3s;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #C59D5F;
    box-shadow: 0 0 0 3px rgba(197,157,95,0.1);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 20px 0 25px;
    font-size: 0.9rem;
    color: #666;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 3px;
    cursor: pointer;
    width: auto;
    flex-shrink: 0;
}

.contact-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
    padding-top: 50px;
    border-top: 1px solid #e8e2d9;
}

.benefit-card {
    text-align: center;
    padding: 24px;
    background: #F8F6F2;
    border-radius: 8px;
}

.benefit-card i {
    font-size: 2rem;
    color: #111;
    margin-bottom: 14px;
    display: block;
}

.benefit-card h4 {
    font-size: 1rem;
    color: #111;
    margin-bottom: 8px;
    font-weight: 600;
}

.benefit-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.contact-cta {
    background: linear-gradient(rgba(17,17,17,0.92), rgba(17,17,17,0.92)),
        url('https://images.unsplash.com/photo-1511818966892-d7d671e672a2?w=1600') center/cover;
    padding: 70px 5%;
    color: #fff;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 60px;
}

.contact-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    margin-bottom: 16px;
    color: #fff;
}

.contact-cta p {
    font-size: 1.05rem;
    color: #ccc;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}

.cta-btn-gold,
.cta-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-decoration: none;
    text-transform: uppercase;
    transition: 0.3s;
}

.cta-btn-gold {
    background: #C59D5F;
    color: #fff;
    border: 1px solid #C59D5F;
}

.cta-btn-gold:hover {
    background: transparent;
    color: #C59D5F;
}

.cta-btn-outline {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.cta-btn-outline:hover {
    background: #fff;
    color: #111;
}

/* ═════════════════════════════════════════════════════════════════════ */
/* FLOATING WHATSAPP */
/* ═════════════════════════════════════════════════════════════════════ */

.whatsapp-float {
    position: fixed;
    right: 26px;
    bottom: 26px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25D366;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.18);
    z-index: 9999;
    transition: transform 0.3s ease;
    padding: 0;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    color: #fff;
}

/* ═════════════════════════════════════════════════════════════════════ */
/* PROJECTS PAGE */
/* ═════════════════════════════════════════════════════════════════════ */

.projects-hero {
    padding: 90px 5% 40px;
    background: #fff;
}

.projects-hero-content {
    max-width: 900px;
}

.projects-hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.6rem;
    line-height: 1.1;
    color: #111;
    margin: 10px 0 16px;
}

.projects-hero-content p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    max-width: 760px;
}

.projects-grid-new {
    padding: 30px 5% 60px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    align-items: start;
}

.proj-card {
    background: #fff;
    border: 1px solid #ece7df;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.proj-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

.proj-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.proj-tag {
    display: inline-block;
    margin: 18px 20px 0;
    color: #c59d5f;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.proj-info {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 16px 20px 22px;
}

.proj-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    color: #111;
    margin: 6px 0 10px;
}

.proj-text p {
    font-size: 0.92rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 14px;
}

.proj-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.84rem;
    color: #666;
}

.proj-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.proj-arrow {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border-radius: 50%;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111;
    transition: all 0.3s ease;
    margin-top: 6px;
    padding: 0;
}

.proj-arrow:hover {
    background: #c59d5f;
    border-color: #c59d5f;
    color: #fff;
}

.filter-bar {
    padding: 0 5% 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-btn,
.filter-sort select {
    font-family: 'Montserrat', sans-serif;
}

.filter-btn {
    padding: 10px 18px;
    border: 1px solid #ddd;
    background: #fff;
    color: #444;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.88rem;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: #c59d5f;
    border-color: #c59d5f;
    color: #fff;
}

.filter-sort select {
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fff;
    color: #444;
    font-size: 0.88rem;
}

.view-all-wrap {
    padding: 0 5% 70px;
    display: flex;
    justify-content: center;
}

/* ════════════════════════════════════════════════════════════════════ */
/* SERVICES PAGE */
/* ════════════════════════════════════════════════════════════════════ */

.services-hero {
    padding: 90px 5% 60px;
    background: #fff;
    text-align: center;
}

.services-hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.6rem;
    color: #111;
    margin-bottom: 10px;
}

.services-hero-content p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

.services-hero-content .gold-line {
    width: 50px;
    height: 2px;
    background: #C59D5F;
    margin: 16px auto 20px;
}

.services-showcase {
    padding: 60px 5% 80px;
    background: #fff;
}

.srv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.srv-card {
    border: 1px solid #ece7df;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 6px 20px rgba(0,0,0,0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.srv-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 32px rgba(0,0,0,0.09);
}

.srv-card-img {
    overflow: hidden;
    height: 240px;
}

.srv-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.srv-card:hover .srv-card-img img {
    transform: scale(1.05);
}

.srv-card-body {
    padding: 30px 28px 34px;
}

.srv-icon {
    width: 52px;
    height: 52px;
    background: #F8F6F2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.srv-icon i {
    font-size: 1.4rem;
    color: #C59D5F;
}

.srv-card-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #111;
    margin-bottom: 4px;
}

.srv-card-body .gold-line-small {
    width: 35px;
    height: 2px;
    background: #C59D5F;
    margin: 12px 0 16px;
}

.srv-card-body p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.75;
    margin-bottom: 22px;
}

.srv-card-body .link-gold {
    color: #C59D5F;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.srv-card-body .link-gold:hover {
    color: #111;
}

.why-us-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: #F8F6F2;
    border-top: 1px solid #ece7df;
    border-bottom: 1px solid #ece7df;
}

.why-card {
    padding: 50px 36px;
    border-right: 1px solid #ece7df;
    text-align: center;
}

.why-card:last-child {
    border-right: none;
}

.why-card i {
    font-size: 2.2rem;
    color: #C59D5F;
    margin-bottom: 18px;
    display: block;
}

.why-card h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 12px;
}

.why-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.7;
}

.services-cta {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    align-items: center;
    gap: 40px;
    padding: 70px 5%;
    background: #111;
}

.services-cta-left h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    color: #fff;
    margin-bottom: 10px;
}

.services-cta-left .gold-line-small {
    width: 35px;
    height: 2px;
    background: #C59D5F;
    margin: 10px 0 16px;
}

.services-cta-left p {
    font-size: 1rem;
    color: #bbb;
    line-height: 1.7;
}

.services-cta-right {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
}

.services-cta-right .btn-solid-gold {
    padding: 15px 28px;
}

.services-cta-right .btn-outline-white {
    padding: 15px 28px;
}

/* ════════════════════════════════════════════════════════════════════ */
/* GALLERY PAGE */
/* ════════════════════════════════════════════════════════════════════ */

.gallery-hero {
    padding: 90px 5% 60px;
    background: #fff;
    text-align: center;
}

.gallery-hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.6rem;
    color: #111;
    margin-bottom: 10px;
}

.gallery-hero-content p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    max-width: 760px;
    margin: 0 auto;
}

.gallery-hero-content .gold-line {
    width: 50px;
    height: 2px;
    background: #C59D5F;
    margin: 16px auto 20px;
}

.filter-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-select {
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fff;
    color: #444;
    font-size: 0.88rem;
    font-family: 'Montserrat', sans-serif;
}

.view-toggle {
    width: 42px;
    height: 42px;
    border: 1px solid #ddd;
    background: #fff;
    color: #444;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    padding: 0;
}

.view-toggle:hover,
.view-toggle.active {
    background: #C59D5F;
    border-color: #C59D5F;
    color: #fff;
}

.gallery-new {
    padding: 20px 5% 70px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    align-items: start;
    background: #fff;
}

.gal-card {
    background: #fff;
    border: 1px solid #ece7df;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gal-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

.gal-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gal-card:hover img {
    transform: scale(1.03);
}

.gal-info {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 20px 22px;
}

.gal-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #111;
    margin: 6px 0 10px;
}

.gal-text p {
    font-size: 0.92rem;
    color: #666;
    line-height: 1.7;
}

.gallery-new.list-view {
    grid-template-columns: 1fr;
}

.gallery-new.list-view .gal-card {
    display: grid;
    grid-template-columns: 320px 1fr;
    align-items: stretch;
}

.gallery-new.list-view .gal-card img {
    width: 100%;
    height: 100%;
    min-height: 240px;
}

.gallery-new.list-view .gal-info {
    padding: 22px 24px;
    align-items: center;
}

.gallery-cta {
    padding: 55px 5%;
    background: #F8F6F2;
    border-top: 1px solid #ece7df;
    border-bottom: 1px solid #ece7df;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
    align-items: center;
}

.gallery-cta-left {
    display: flex;
    align-items: center;
    gap: 18px;
}

.gallery-cta-left i {
    color: #C59D5F !important;
    flex-shrink: 0;
}

.gallery-cta-left h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #111;
    margin-bottom: 6px;
}

.gallery-cta-left p {
    font-size: 0.98rem;
    color: #666;
    line-height: 1.7;
}

/* ════════════════════════════════════════════════════════════════════ */
/* ABOUT PAGE */
/* ════════════════════════════════════════════════════════════════════ */

.about-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 80px 5%;
    align-items: center;
    background: #fff;
}

.about-hero-left h1 {
    font-size: 3rem;
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #111;
}

.about-hero-left p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.7;
    margin-top: 20px;
}

.about-hero-right img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.philosophy-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 80px 5%;
    background: #F8F6F2;
}

.philosophy-left h2 {
    font-size: 2.2rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 25px;
    color: #111;
}

.philosophy-left p {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.founder-sig {
    margin-top: 40px;
    border-top: 1px solid #ddd;
    padding-top: 20px;
}

.founder-sig h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #111;
}

.founder-sig p {
    font-size: 0.9rem;
    color: #999;
    margin: 0;
}

.philosophy-right {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.phil-card {
    background: #fff;
    padding: 25px;
    border-left: 3px solid #C59D5F;
}

.phil-card i {
    font-size: 1.8rem;
    color: #C59D5F;
    margin-bottom: 12px;
}

.phil-card h4 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: #111;
}

.phil-card p {
    font-size: 0.88rem;
    color: #777;
    line-height: 1.6;
}

.founder-section {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    padding: 80px 5%;
    background: #fff;
    align-items: center;
}

.founder-img img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
}

.founder-content h3 {
    font-size: 2rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 8px;
    margin-top: 10px;
    color: #111;
}

.founder-title {
    color: #C59D5F;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 20px;
}

.founder-content > p {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.credentials {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.cred-item {
    text-align: center;
    padding: 20px 10px;
    background: #F8F6F2;
    border-radius: 6px;
}

.cred-item i {
    font-size: 1.6rem;
    color: #C59D5F;
    margin-bottom: 10px;
    display: block;
}

.cred-item p {
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.5;
    margin: 0;
    color: #111;
}

.timeline-section {
    padding: 80px 5%;
    background: #F8F6F2;
    text-align: center;
}

.timeline-section h2 {
    font-size: 2.2rem;
    font-family: 'Playfair Display', serif;
    color: #111;
}

.timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    margin-top: 60px;
    flex-wrap: wrap;
    gap: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 5%;
    right: 5%;
    height: 2px;
    background: #ddd;
    z-index: 0;
}

.timeline-item {
    position: relative;
    z-index: 1;
    flex: 1;
    text-align: center;
    padding: 0 10px;
    min-width: 150px;
}

.timeline-marker {
    width: 80px;
    height: 80px;
    background: #C59D5F;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
}

.timeline-content h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #111;
}

.timeline-content p {
    font-size: 0.85rem;
    color: #777;
    line-height: 1.5;
}

.process-behind {
    padding: 80px 5%;
    background: #fff;
    text-align: center;
}

.process-behind h2 {
    font-size: 2.2rem;
    font-family: 'Playfair Display', serif;
    color: #111;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.process-img {
    overflow: hidden;
    border-radius: 6px;
}

.process-img img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.4s;
}

.process-img:hover img {
    transform: scale(1.06);
}

.process-img h4 {
    padding: 14px 10px;
    background: #F8F6F2;
    font-size: 0.9rem;
    color: #111;
    margin: 0;
}

.about-quote {
    background: #111;
    padding: 80px 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.quote-text i {
    font-size: 3rem;
    color: #C59D5F;
    opacity: 0.6;
    margin-bottom: 20px;
    display: block;
}

.quote-text p {
    font-size: 1.8rem;
    font-family: 'Playfair Display', serif;
    color: #fff;
    line-height: 1.5;
}

.quote-text span {
    color: #C59D5F;
    font-style: italic;
    display: block;
    margin-top: 10px;
}

.quote-cta p {
    color: #aaa;
    font-size: 1rem;
    margin-bottom: 25px;
    line-height: 1.6;
}

.link-gold {
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.link-gold:hover {
    color: var(--dark);
}

/* ════════════════════════════════════════════════════════════════════ */
/* HOMEPAGE SERVICES SECTION */
/* ════════════════════════════════════════════════════════════════════ */

.services-section {
    padding: 80px 5%;
    background: #fff;
}

.services-header {
    max-width: 600px;
    margin-bottom: 60px;
}

.services-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #111;
    margin-bottom: 18px;
}

.services-header p {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 24px;
}

.services-grid-home {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-card-home {
    background: #F8F6F2;
    padding: 30px 24px;
    border-radius: 8px;
    border: 1px solid #e8e2d9;
    text-align: center;
    transition: all 0.3s ease;
}

.service-card-home:hover {
    background: #fff;
    border-color: #C59D5F;
    box-shadow: 0 8px 20px rgba(197,157,95,0.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.8rem;
    color: #C59D5F;
    border: 2px solid #e8e2d9;
    transition: all 0.3s;
}

.service-card-home:hover .service-icon {
    background: #C59D5F;
    color: #fff;
    border-color: #C59D5F;
}

.service-card-home h4 {
    font-size: 1.1rem;
    color: #111;
    margin-bottom: 10px;
    font-weight: 600;
}

.service-card-home p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.7;
}

.pack-card {
    text-decoration: none;
    color: inherit;
    display: block;
}

.pack-card .btn-outline-dark {
    pointer-events: none;
}

/* ═════════════════════════════════════════════════════════════════════ */
/* RESPONSIVE — TABLET (max-width: 1200px) */
/* ═════════════════════════════════════════════════════════════════════ */

@media (max-width: 1200px) {

    h1 { font-size: 3rem; }
    h2 { font-size: 1.95rem; }

    .hero,
    .about-hero,
    .contact-hero {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .hero-right img,
    .about-hero-right img,
    .contact-hero-right img {
        height: 350px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .contact-benefits {
        grid-template-columns: repeat(2, 1fr);
    }

    .srv-grid,
    .projects-grid-new,
    .gallery-new {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .services-cta,
    .gallery-cta {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .services-cta-right {
        justify-content: center;
    }

    .services-cta-left .gold-line-small {
        margin: 10px auto 16px;
    }

    .gallery-new.list-view .gal-card {
        grid-template-columns: 260px 1fr;
    }

    .about-hero,
    .philosophy-section,
    .founder-section,
    .about-quote {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .credentials {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .timeline::before {
        display: none;
    }

    .about-quote {
        text-align: center;
    }

    .founder-img img {
        height: auto;
    }

    .services-grid-home {
        grid-template-columns: repeat(3, 1fr);
    }

    .services-header h2 {
        font-size: 2.4rem;
    }

    .why-us-bar {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-card:nth-child(2) {
        border-right: none;
    }

    .why-card:nth-child(3),
    .why-card:nth-child(4) {
        border-top: 1px solid #ece7df;
    }
}

/* ═════════════════════════════════════════════════════════════════════ */
/* RESPONSIVE — MOBILE (max-width: 768px) */
/* ═════════════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {

    /* --- NAV --- */
    nav {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 12px 5%;
    }

    nav .logo img {
        height: 42px;
    }

    .nav-toggle {
        display: flex;
    }

    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: #fff;
        border-top: 1px solid #eee;
        padding: 10px 5% 20px;
        gap: 0;
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        z-index: 999;
    }

    nav ul.open {
        display: flex;
    }

    nav ul li {
        width: 100%;
        border-bottom: 1px solid #f5f5f5;
    }

    nav ul li:last-child {
        border-bottom: none;
    }

    nav ul li a {
        display: block;
        padding: 13px 0;
        font-size: 1rem;
        border-bottom: none !important;
    }

    /* --- TYPOGRAPHY --- */
    h1 { font-size: 2.5rem; }
    h2 { font-size: 1.6rem; }

    /* --- HERO --- */
    .hero-advanced,
    .hero,
    .about-hero,
    .contact-hero {
        grid-template-columns: 1fr;
        padding: 50px 5%;
        gap: 30px;
        min-height: auto;
    }

    .hero-image img,
    .hero-right img,
    .about-hero-right img,
    .contact-hero-right img {
        height: 280px;
    }

    /* --- HOME SERVICES --- */
    .home-services {
        padding: 60px 5%;
    }

    .home-services-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .services-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    /* --- STATS --- */
    .stats-banner {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        padding: 40px 20px;
    }

    .stat:last-child {
        border-bottom: none;
    }

    /* --- RECENT WORK --- */
    .work-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    /* --- PROCESS STEPS --- */
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .process-steps::before {
        display: none;
    }

    /* --- PACKAGES --- */
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    /* --- BOTTOM CTA --- */
    .bottom-cta {
        padding: 70px 5%;
    }

    .bottom-cta h2 {
        font-size: 2.2rem;
    }

    .bottom-cta .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .bottom-cta .hero-buttons a {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    /* --- CONTACT PAGE --- */
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-card,
    .contact-form-card {
        padding: 28px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-benefits {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .map-container {
        height: 200px;
    }

    .contact-cta {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 50px 5%;
    }

    .contact-cta h2 {
        font-size: 2rem;
    }

    .contact-cta .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-btn-gold,
    .cta-btn-outline {
        width: 100%;
        justify-content: center;
    }

    /* --- SERVICES PAGE --- */
    .services-hero {
        padding: 60px 5% 40px;
    }

    .services-hero-content h1 {
        font-size: 2.4rem;
    }

    .srv-grid {
        grid-template-columns: 1fr;
    }

    .srv-card-img {
        height: 220px;
    }

    .srv-card-body {
        padding: 24px 20px;
    }

    .why-us-bar {
        grid-template-columns: 1fr;
    }

    .why-card {
        border-right: none;
        border-bottom: 1px solid #ece7df;
        padding: 36px 24px;
    }

    .why-card:last-child {
        border-bottom: none;
    }

    .services-cta {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 50px 5%;
        gap: 30px;
    }

    .services-cta-left .gold-line-small {
        margin: 10px auto 16px;
    }

    .services-cta-right {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .services-cta-right .btn-solid-gold,
    .services-cta-right .btn-outline-white,
    .services-cta-right .btn-whatsapp {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    /* --- PROJECTS PAGE --- */
    .projects-hero {
        padding: 60px 5% 30px;
    }

    .projects-hero-content h1 {
        font-size: 2.4rem;
    }

    .projects-grid-new {
        grid-template-columns: 1fr;
        padding: 20px 5% 50px;
    }

    .filter-bar {
        flex-direction: column;
        align-items: flex-start;
    }

    .filter-buttons {
        width: 100%;
    }

    .filter-btn {
        font-size: 0.82rem;
        padding: 9px 14px;
    }

    /* --- GALLERY PAGE --- */
    .gallery-hero {
        padding: 60px 5% 40px;
    }

    .gallery-hero-content h1 {
        font-size: 2.4rem;
    }

    .gallery-new {
        grid-template-columns: 1fr;
        padding: 16px 5% 50px;
        gap: 20px;
    }

    .gallery-new.list-view .gal-card {
        grid-template-columns: 1fr;
    }

    .gallery-new.list-view .gal-card img {
        min-height: 220px;
    }

    .gal-info {
        flex-direction: column;
        align-items: flex-start;
    }

    .gallery-cta {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 40px 5%;
    }

    .gallery-cta-left {
        flex-direction: column;
        align-items: center;
    }

    .filter-right {
        width: 100%;
    }

    .filter-select {
        flex: 1;
    }

    /* --- ABOUT PAGE --- */
    .about-hero,
    .philosophy-section,
    .founder-section,
    .about-quote {
        grid-template-columns: 1fr;
        padding: 60px 5%;
        gap: 30px;
    }

    .about-hero-left h1 {
        font-size: 2.2rem;
    }

    .about-hero-right img,
    .founder-img img {
        height: 280px;
    }

    .credentials {
        grid-template-columns: repeat(2, 1fr);
    }

    .timeline::before {
        display: none;
    }

    .timeline-item {
        min-width: 100%;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .quote-text p {
        font-size: 1.4rem;
    }

    .about-quote {
        text-align: center;
    }

    /* --- FOOTER --- */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .contact-col p {
        white-space: normal;
        font-size: 0.85rem;
    }

    /* --- SERVICES GRID HOME --- */
    .services-section {
        padding: 60px 5%;
    }

    .services-grid-home {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .services-header h2 {
        font-size: 2rem;
    }
}

/* ═════════════════════════════════════════════════════════════════════ */
/* RESPONSIVE — SMALL MOBILE (max-width: 480px) */
/* ═════════════════════════════════════════════════════════════════════ */

@media (max-width: 480px) {

    h1 { font-size: 2rem; }
    h2 { font-size: 1.4rem; }

    /* --- NAV --- */
    nav ul li a {
        font-size: 0.95rem;
    }

    /* --- HERO --- */
    .hero-advanced,
    .hero,
    .about-hero,
    .contact-hero,
    .contact-main {
        padding: 36px 5%;
    }

    .hero-image img,
    .hero-right img,
    .about-hero-right img,
    .contact-hero-right img {
        height: 240px;
    }

    /* --- ALL GRIDS TO 1 COLUMN --- */
    .services-cards-grid,
    .work-grid,
    .process-steps,
    .packages-grid,
    .stats-banner,
    .contact-benefits,
    .footer-grid,
    .services-grid-home,
    .credentials,
    .process-grid {
        grid-template-columns: 1fr;
    }

    /* --- PACKAGES --- */
    .pack-price {
        font-size: 2.2rem;
    }

    /* --- BOTTOM CTA --- */
    .bottom-cta {
        padding: 60px 5%;
    }

    .bottom-cta h2 {
        font-size: 1.8rem;
    }

    /* --- CONTACT FORM --- */
    .contact-info-card,
    .contact-form-card {
        padding: 22px 16px;
    }

    /* --- SERVICES PAGE --- */
    .services-hero-content h1,
    .gallery-hero-content h1,
    .projects-hero-content h1 {
        font-size: 2rem;
    }

    /* --- FOOTER --- */
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    /* --- WHATSAPP --- */
    .whatsapp-float {
        right: 16px;
        bottom: 16px;
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
    }

    /* --- GALLERY --- */
    .gallery-new {
        grid-template-columns: 1fr;
    }

    /* --- ABOUT --- */
    .about-hero-right img,
    .founder-img img {
        height: 220px;
    }

    .quote-text p {
        font-size: 1.2rem;
    }
}
