/* ===================================================
   SQALLIEVENTS.MA - MAIN STYLESHEET
   Luxury Catering Company, Casablanca
   =================================================== */

/* ---------- CSS VARIABLES ---------- */
:root {
    --color-primary: #D4A373;
    --color-primary-light: #E8C597;
    --color-primary-dark: #B8864B;
    --color-secondary: #F5F1EC;
    --color-background: #FAF8F5;
    --color-dark: #2D2A26;
    --color-text: #3A3530;
    --color-text-light: #6B6560;
    --color-beige: #EEE7DF;
    --color-white: #FFFFFF;
    --color-border: rgba(212, 163, 115, 0.25);
    --color-gold-gradient: linear-gradient(135deg, #D4A373 0%, #C5955E 50%, #B8864B 100%);
    --color-gold-gradient-hover: linear-gradient(135deg, #E8C597 0%, #D4A373 50%, #C5955E 100%);

    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Poppins', Helvetica, Arial, sans-serif;

    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 30px 80px rgba(0, 0, 0, 0.12);

    --transition-fast: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

    --container-width: 1280px;
    --header-height: 85px;
    --border-radius: 2px;
}

/* ---------- GLOBAL RESET & BASE ---------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-background);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* ---------- TYPOGRAPHY ---------- */
.section-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 1rem;
    position: relative;
    padding-left: 40px;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 1px;
    background: var(--color-primary);
}

.section-tag--center {
    padding-left: 0;
    display: table;
    margin: 0 auto 1rem;
}

.section-tag--center::before {
    display: none;
}

.section-title {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 2.8rem;
    color: var(--color-dark);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.section-title--center {
    text-align: center;
}

.section-divider {
    width: 60px;
    height: 2px;
    background: var(--color-primary);
    margin: 1.5rem auto 3rem;
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 1px;
    padding: 0.9rem 2.2rem;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all var(--transition-smooth);
    border: none;
    text-transform: uppercase;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn--gold {
    background: var(--color-gold-gradient);
    color: var(--color-white);
    box-shadow: 0 4px 20px rgba(212, 163, 115, 0.3);
}

.btn--gold:hover {
    background: var(--color-gold-gradient-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 163, 115, 0.45);
    color: var(--color-white);
}

.btn--outline {
    background: transparent;
    color: var(--color-white);
    border: 1.5px solid rgba(255, 255, 255, 0.6);
}

.btn--outline:hover {
    background: var(--color-white);
    color: var(--color-dark);
    border-color: var(--color-white);
    transform: translateY(-2px);
}

.btn--lg {
    padding: 1rem 2.8rem;
    font-size: 0.9rem;
}

/* ---------- ANIMATIONS (SCROLL) ---------- */
.fade-in-up,
.fade-in-left,
.fade-in-right {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: opacity, transform;
}

.fade-in-up {
    transform: translateY(40px);
}

.fade-in-left {
    transform: translateX(-40px);
}

.fade-in-right {
    transform: translateX(40px);
}

.fade-in-up.visible,
.fade-in-left.visible,
.fade-in-right.visible {
    opacity: 1;
    transform: translate(0);
}

/* Stagger delays */
[data-delay="0"] { transition-delay: 0ms; }
[data-delay="100"] { transition-delay: 100ms; }
[data-delay="150"] { transition-delay: 150ms; }
[data-delay="200"] { transition-delay: 200ms; }
[data-delay="250"] { transition-delay: 250ms; }
[data-delay="300"] { transition-delay: 300ms; }
[data-delay="350"] { transition-delay: 350ms; }
[data-delay="400"] { transition-delay: 400ms; }
[data-delay="450"] { transition-delay: 450ms; }

/* ---------- HEADER ---------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0);
    backdrop-filter: blur(0px);
    transition: all var(--transition-smooth);
    padding: 1.2rem 0;
}

.header.scrolled {
    background: rgba(250, 248, 245, 0.92);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    padding: 0.7rem 0;
}

.header__container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__logo {
    display: flex;
    align-items: baseline;
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--color-white);
    transition: color var(--transition-smooth);
}

.header.scrolled .header__logo {
    color: var(--color-dark);
}

.header__logo-text {
    font-weight: 600;
}

.header__logo-accent {
    font-weight: 300;
    color: var(--color-primary);
}

.header__logo-domain {
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 1px;
    margin-left: 2px;
    opacity: 0.8;
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.header__nav-list {
    display: flex;
    gap: 2rem;
}

.header__nav-link {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    padding: 0.3rem 0;
    transition: color var(--transition-fast);
}

.header.scrolled .header__nav-link {
    color: var(--color-text);
}

.header__nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--color-primary);
    transition: width var(--transition-smooth);
}

.header__nav-link:hover,
.header__nav-link.active {
    color: var(--color-primary);
}

.header__nav-link:hover::after,
.header__nav-link.active::after {
    width: 100%;
}

.header__cta {
    margin-left: 0.5rem;
}

/* Burger Menu */
.header__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    width: 28px;
    height: 20px;
    position: relative;
    z-index: 1001;
}

.header__burger-line {
    width: 100%;
    height: 2px;
    background: var(--color-white);
    transition: all var(--transition-smooth);
    border-radius: 2px;
}

.header.scrolled .header__burger-line {
    background: var(--color-dark);
}

.header__burger.active .header__burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.header__burger.active .header__burger-line:nth-child(2) {
    opacity: 0;
}
.header__burger.active .header__burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ---------- HERO ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: #1A1816;
    overflow: hidden;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 30%, rgba(212, 163, 115, 0.08) 0%, transparent 60%),
                linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.2) 100%);
    z-index: 1;
}

.hero__pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-image: repeating-linear-gradient(45deg, transparent, transparent 5px, rgba(255,255,255,0.01) 5px, rgba(255,255,255,0.01) 10px);
    z-index: 0;
}

.hero__container {
    position: relative;
    z-index: 2;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 8rem 2rem 5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.hero__content {
    color: var(--color-white);
}

.hero__badge {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: rgba(212, 163, 115, 0.15);
    border: 1px solid rgba(212, 163, 115, 0.4);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    color: var(--color-primary-light);
    margin-bottom: 2rem;
}

.hero__title {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 3.8rem;
    line-height: 1.15;
    margin-bottom: 1.2rem;
    letter-spacing: -0.5px;
}

.hero__title-italic {
    font-style: italic;
    font-weight: 400;
    color: var(--color-primary-light);
}

.hero__subtitle {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-style: italic;
    color: rgba(255,255,255,0.7);
    margin-bottom: 1.5rem;
}

.hero__description {
    font-size: 1rem;
    color: rgba(255,255,255,0.65);
    max-width: 480px;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero__image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__image-frame {
    width: 90%;
    max-width: 480px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,0.5);
    border: 3px solid rgba(212, 163, 115, 0.3);
    position: relative;
    z-index: 2;
}

.hero__image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 4/5;
}

.hero__image-accent {
    position: absolute;
    border: 1.5px solid var(--color-primary);
    border-radius: 4px;
    z-index: 1;
}

.hero__image-accent--1 {
    width: 60%;
    height: 70%;
    top: -15px;
    right: -20px;
    border-right: 0;
    border-bottom: 0;
}

.hero__image-accent--2 {
    width: 45%;
    height: 55%;
    bottom: -20px;
    left: -15px;
    border-left: 0;
    border-top: 0;
}

.hero__image-badge {
    position: absolute;
    bottom: 25px;
    left: -10px;
    background: var(--color-white);
    color: var(--color-dark);
    padding: 1rem 1.8rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: var(--font-heading);
}

.hero__image-badge-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
}

.hero__image-badge-text {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-text-light);
}

.hero__scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    z-index: 3;
    color: rgba(255,255,255,0.7);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--color-primary), transparent);
    animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; height: 40px; }
    50% { opacity: 1; height: 55px; }
}

/* ---------- SERVICES ICONS ---------- */
.services-icons {
    padding: 5rem 0;
    background: var(--color-background);
}

.services-icons__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--color-white);
    padding: 2.5rem 2rem;
    border-radius: 4px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all var(--transition-smooth);
    border: 1px solid var(--color-beige);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary-light);
}

.service-card__icon-wrapper {
    margin-bottom: 1.8rem;
}

.service-card__icon {
    width: 70px;
    height: 70px;
    margin: 0 auto;
    background: var(--color-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--color-primary-dark);
    transition: all var(--transition-bounce);
}

.service-card:hover .service-card__icon {
    background: var(--color-primary);
    color: var(--color-white);
    transform: scale(1.08);
}

.service-card__title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 0.8rem;
}

.service-card__text {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-card__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid var(--color-border);
    color: var(--color-primary);
    font-size: 0.9rem;
    transition: all var(--transition-fast);
}

.service-card:hover .service-card__arrow {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
    transform: translateX(5px);
}

/* ---------- ABOUT ---------- */
.about {
    padding: 6rem 0;
    background: var(--color-secondary);
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about__images {
    position: relative;
}

.about__image-main {
    width: 85%;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about__image-secondary {
    position: absolute;
    bottom: -40px;
    right: 0;
    width: 55%;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--color-white);
}

.about__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/5;
}

.about__ornament {
    position: absolute;
    width: 80px;
    height: 80px;
    border: 2px solid var(--color-primary);
    opacity: 0.4;
    border-radius: 50%;
}

.about__ornament--1 {
    top: -25px;
    left: -25px;
}

.about__ornament--2 {
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
}

.about__content {
    padding-right: 2rem;
}

.about__divider {
    width: 50px;
    height: 2px;
    background: var(--color-primary);
    margin-bottom: 2rem;
}

.about__text {
    color: var(--color-text-light);
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
    line-height: 1.8;
}

.about__stats {
    display: flex;
    gap: 2.5rem;
    margin: 2.5rem 0;
    flex-wrap: wrap;
}

.about__stat {
    display: flex;
    flex-direction: column;
}

.about__stat-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
}

.about__stat-label {
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-text-light);
    margin-top: 0.3rem;
}

/* ---------- FORMATS ---------- */
.formats {
    padding: 6rem 0;
    background: var(--color-background);
}

.formats__header {
    margin-bottom: 3rem;
}

.formats__list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.format-item {
    background: var(--color-white);
    border-left: 3px solid transparent;
    border-radius: 4px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-smooth);
}

.format-item:hover {
    border-left-color: var(--color-primary);
    box-shadow: var(--shadow-md);
    transform: translateX(6px);
}

.format-item__inner {
    display: flex;
    align-items: center;
    gap: 1.8rem;
    padding: 1.8rem 2rem;
    cursor: pointer;
}

.format-item__icon {
    width: 55px;
    height: 55px;
    background: var(--color-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--color-primary-dark);
    flex-shrink: 0;
    transition: all var(--transition-fast);
}

.format-item:hover .format-item__icon {
    background: var(--color-primary);
    color: var(--color-white);
}

.format-item__content {
    flex: 1;
}

.format-item__title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 0.3rem;
}

.format-item__text {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

.format-item__arrow {
    color: var(--color-primary);
    font-size: 1rem;
    transition: transform var(--transition-fast);
}

.format-item:hover .format-item__arrow {
    transform: translateX(5px);
    color: var(--color-primary-dark);
}

/* ---------- GALLERY ---------- */
.gallery {
    padding: 6rem 0;
    background: var(--color-secondary);
}

.gallery__header {
    margin-bottom: 3rem;
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}

.gallery__item {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1 / 1;
}

.gallery__item--large {
    grid-row: span 2;
    aspect-ratio: 2 / 3;
}

.gallery__item--wide {
    grid-column: span 2;
    aspect-ratio: 16 / 7;
}

.gallery__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery__item:hover .gallery__img {
    transform: scale(1.08);
}

.gallery__item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

.gallery__item:hover .gallery__item-overlay {
    opacity: 1;
}

.gallery__item-icon {
    font-size: 1.5rem;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.gallery__item-label {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--color-white);
    letter-spacing: 1px;
}

/* ---------- LIGHTBOX ---------- */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox__close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: transparent;
    border: none;
    font-size: 2rem;
    color: var(--color-white);
    cursor: pointer;
    z-index: 2001;
    opacity: 0.8;
    transition: opacity var(--transition-fast);
}

.lightbox__close:hover {
    opacity: 1;
}

.lightbox__content {
    max-width: 80vw;
    max-height: 80vh;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

.lightbox__img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
}

.lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: none;
    color: var(--color-white);
    font-size: 1.8rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background var(--transition-fast);
    backdrop-filter: blur(5px);
}

.lightbox__nav:hover {
    background: rgba(212, 163, 115, 0.5);
}

.lightbox__nav--prev {
    left: 2rem;
}

.lightbox__nav--next {
    right: 2rem;
}

/* ---------- CONTACT ---------- */
.contact {
    padding: 6rem 0;
    background: var(--color-background);
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
}

.contact__info-text {
    color: var(--color-text-light);
    margin-bottom: 2.5rem;
    font-size: 0.95rem;
    line-height: 1.8;
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact__detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact__detail-icon {
    width: 45px;
    height: 45px;
    background: var(--color-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 1rem;
    flex-shrink: 0;
}

.contact__detail-content {
    display: flex;
    flex-direction: column;
}

.contact__detail-label {
    font-size: 0.7rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-text-light);
}

.contact__detail-value {
    font-weight: 500;
    color: var(--color-dark);
}

.contact__social-label {
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-text-light);
    margin-bottom: 1rem;
    display: block;
}

.contact__social-icons {
    display: flex;
    gap: 1rem;
}

.contact__social-link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--color-white);
    border: 1px solid var(--color-beige);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.contact__social-link:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-3px);
}

.contact__form-wrapper {
    background: var(--color-white);
    padding: 3rem;
    border-radius: 4px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-beige);
}

.contact__form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact__form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.contact__form-group {
    display: flex;
    flex-direction: column;
}

.contact__form-group--full {
    grid-column: span 2;
}

.contact__form-label {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.contact__form-label span {
    color: var(--color-primary);
}

.contact__form-input,
.contact__form-textarea {
    font-family: var(--font-body);
    font-size: 0.95rem;
    padding: 0.9rem 1.2rem;
    background: var(--color-background);
    border: 1px solid var(--color-beige);
    border-radius: var(--border-radius);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    outline: none;
}

.contact__form-input:focus,
.contact__form-textarea:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(212, 163, 115, 0.1);
}

.contact__form-textarea {
    resize: vertical;
    min-height: 120px;
}

.contact__form-submit {
    align-self: flex-start;
    margin-top: 0.5rem;
    gap: 0.8rem;
}

/* ---------- FOOTER ---------- */
.footer {
    background: #1F1D1A;
    color: rgba(255,255,255,0.7);
}

.footer__top {
    padding: 4rem 0 3rem;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer__logo {
    display: inline-flex;
    align-items: baseline;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.footer__logo-text { font-weight: 600; }
.footer__logo-accent { font-weight: 300; color: var(--color-primary); }
.footer__logo-domain { font-size: 0.8rem; font-weight: 400; opacity: 0.7; margin-left: 2px; }

.footer__brand-text {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer__social {
    display: flex;
    gap: 0.8rem;
}

.footer__social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    transition: all var(--transition-fast);
}

.footer__social-link:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.footer__links-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer__links-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer__link {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.55);
    transition: color var(--transition-fast), transform var(--transition-fast);
    display: inline-block;
}

.footer__link:hover {
    color: var(--color-primary);
    transform: translateX(5px);
}

.footer__links-list--contact li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.55);
}

.footer__links-list--contact i {
    color: var(--color-primary);
    width: 16px;
    text-align: center;
}

.footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
}

/* ---------- THANK YOU PAGES (inline styles already present in those files) ---------- */

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .hero__container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 7rem;
    }

    .hero__content {
        order: 2;
    }

    .hero__image-wrapper {
        order: 1;
        max-width: 350px;
        margin: 0 auto 2rem;
    }

    .hero__description {
        margin: 0 auto 2rem;
    }

    .hero__buttons {
        justify-content: center;
    }

    .about__grid,
    .contact__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about__content {
        padding-right: 0;
    }

    .about__images {
        max-width: 500px;
        margin: 0 auto;
    }

    .footer__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 350px;
        height: 100vh;
        background: var(--color-background);
        flex-direction: column;
        justify-content: center;
        gap: 2.5rem;
        padding: 2rem;
        box-shadow: var(--shadow-xl);
        transition: right 0.4s ease;
        z-index: 1000;
    }

    .header__nav.active {
        right: 0;
    }

    .header__nav-list {
        flex-direction: column;
        align-items: center;
        gap: 1.8rem;
    }

    .header__nav-link {
        color: var(--color-dark);
        font-size: 0.9rem;
    }

    .header__burger {
        display: flex;
    }

    .header__cta {
        margin-left: 0;
    }

    .services-icons__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery__item--large {
        grid-row: span 1;
        aspect-ratio: 1/1;
    }

    .gallery__item--wide {
        grid-column: span 2;
        aspect-ratio: 2/1;
    }

    .contact__form-row {
        grid-template-columns: 1fr;
    }

    .contact__form-group--full {
        grid-column: span 1;
    }

    .hero__title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.5rem;
    }

    .hero__container {
        padding: 6rem 1.5rem 4rem;
    }

    .hero__title {
        font-size: 2rem;
    }

    .hero__subtitle {
        font-size: 1.1rem;
    }

    .services-icons__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .gallery__grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .gallery__item--wide {
        grid-column: span 1;
        aspect-ratio: 4/3;
    }

    .contact__form-wrapper {
        padding: 2rem 1.5rem;
    }

    .about__image-secondary {
        width: 45%;
        bottom: -25px;
    }

    .format-item__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .thank__content {
        padding: 2.5rem 1.5rem;
    }
}

/* ---------- FLOATING WHATSAPP BUTTON ---------- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    animation: whatsapp-pulse 2.5s infinite;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5);
    animation: none;
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }
}