/* ===================================
   Mascot Universal - Main Stylesheet
   =================================== */

/* ===================================
   Custom Fonts
   =================================== */
@font-face {
    font-family: 'Berlin Sans';
    src: url('../fonts/berlinsans.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham Book.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* CSS Variables */
:root {
    /* Colors */
    --color-primary-brown: #59481d;
    --color-secondary-brown: #51420f;
    --color-gold: #a78f5c;
    --color-gold-light: #a78f5e;
    --color-orange: #faa937;
    --color-orange-dark: #ffaa36;
    --color-pink: #da6da9;
    --color-pink-dark: #dc6caf;
    --color-cream: #fdf9f3;
    --color-cream-dark: #f0e6d7;
    --color-cream-light: #fff8ee;
    --color-peach: #ffe6ca;
    --color-text-dark: #232323;
    --color-text-brown: #5c4f06;
    --color-text-gray: #3f3f3f;
    --color-text-light: #63584e;
    --color-white: #ffffff;

    /* Typography */
    --font-primary: 'Gotham', 'Montserrat', sans-serif;
    --font-heading: 'Berlin Sans', 'Bebas Neue', sans-serif;
    --font-display: 'Raleway', sans-serif;

    /* Spacing */
    --container-max: 1720px;
    --container-padding: clamp(30px, 5vw, 100px);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-cream);
    color: var(--color-text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ===================================
   Announcement Bar
   =================================== */
.announcement-bar {
    background-color: var(--color-primary-brown);
    padding: 15px 0;
    text-align: center;
    animation: navAppear 0.6s ease-out forwards;
}

.announcement-text {
    color: var(--color-white);
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===================================
   Header & Navigation
   =================================== */
.header {
    background-color: var(--color-white);
    border-bottom: 1px solid #dedede;
    position: sticky;
    top: 0;
    z-index: 1000;
    animation: navAppear 0.8s ease-out forwards;
}

@keyframes navAppear {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 22px;
    padding-bottom: 22px;
}

.logo img {
    width: 213px;
    height: 76px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 38px;
}

.nav-link {
    font-size: 18px;
    text-transform: uppercase;
    color: var(--color-text-dark);
    font-weight: 400;
}

.nav-link.active {
    font-weight: 500;
}

.nav-link:hover {
    color: var(--color-gold);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 21px;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 400;
    transition: var(--transition-normal);
}

.btn-primary {
    background-color: var(--color-pink);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: #B84383;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--color-gold);
    color: var(--color-white);
}

.btn-secondary:hover {
    background-color: var(--color-primary-brown);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--color-text-dark);
    transition: var(--transition-fast);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--color-white);
    z-index: 999;
    padding: 100px 30px;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    position: relative;
    height: 826px;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-out, visibility 0.8s ease-out;
    display: flex;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-images {
    position: absolute;
    inset: 0;
    display: flex;
}

.hero-image {
    position: relative;
    height: 100%;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image-left {
    width: 50%;
}

.hero-image-left .hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(167, 144, 97, 0.5);
}

.hero-image-right {
    width: 50%;
    overflow: hidden;
}

.hero-slide.active .hero-image-right {
    animation: heroImageAppear 1.2s ease-out forwards;
}

.hero-image-right img {
    transition: transform 0.5s ease-out;
}

.hero-image-right:hover img {
    transform: scale(1.08);
}

@keyframes heroImageAppear {
    0% {
        opacity: 0;
        clip-path: inset(0 100% 0 0);
    }
    100% {
        opacity: 1;
        clip-path: inset(0 0 0 0);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 50%;
    padding: 200px 80px 60px 105px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 58px;
    font-weight: 400;
    line-height: 1.26;
    color: var(--color-white);
    text-transform: uppercase;
    margin-bottom: 31px;
    letter-spacing: 2px;
    opacity: 0;
    transform: translateY(30px);
}

.hero-slide.active .hero-title {
    animation: heroTextAppear 0.8s ease-out 0.3s forwards;
}

.hero-content-centered {
    justify-content: center;
    padding-top: 0;
}

.hero-title-large {
    font-size: 52px;
    line-height: 1.4;
}

.hero-logos {
    display: flex;
    align-items: flex-end;
    gap: 35px;
    margin-top: 34px;
    opacity: 0;
    transform: translateY(30px);
}

.hero-slide.active .hero-logos {
    animation: heroTextAppear 0.8s ease-out 0.6s forwards;
}

.hero-logo {
    height: auto;
    max-height: 92px;
}

.hero-logo:first-child {
    width: 156px;
}

.hero-logo:last-child {
    width: 281px;
}

.hero-description {
    font-size: 20px;
    color: var(--color-white);
    margin-bottom: 31px;
    max-width: 508px;
    opacity: 0;
    transform: translateY(30px);
}

.hero-slide.active .hero-description {
    animation: heroTextAppear 0.8s ease-out 0.6s forwards;
}

.hero-slide .btn-primary {
    margin-bottom: 40px;
    align-self: flex-start;
    opacity: 0;
    transform: translateY(30px);
}

.hero-slide.active .btn-primary {
    animation: heroTextAppear 0.8s ease-out 0.9s forwards;
}

@keyframes heroTextAppear {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-dots {
    position: absolute;
    bottom: 40px;
    left: 105px;
    display: flex;
    gap: 6px;
    z-index: 20;
}

.dot {
    width: 17px;
    height: 16px;
    background-color: rgba(217, 217, 217, 0.32);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    background-color: rgba(217, 217, 217, 0.5);
}

.dot.active {
    width: 37px;
    background-color: #d9d9d9;
}

/* ===================================
   Trust Banner
   =================================== */
.trust-banner {
    background-color: var(--color-cream);
    padding: 20px 0;
    overflow: hidden;
}

.trust-banner-track {
    display: flex;
    gap: 18px;
    animation: scroll 15s linear infinite;
}

@media (max-width: 768px) {
    .trust-banner-track {
        animation: scroll 15s linear infinite;
    }
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-shrink: 0;
}

.trust-icon {
    width: 25px;
    height: 26px;
}

.trust-item span {
    font-size: 20px;
    color: var(--color-gold-light);
    white-space: nowrap;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ===================================
   About Section
   =================================== */
.about-section {
    padding: 60px 0 100px;
    position: relative;
    overflow: hidden;
}

.about-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
}

.about-content {
    flex: 1;
    max-width: 500px;
    padding-top: 20px;
}

.section-label {
    display: inline-block;
    font-size: 20px;
    font-weight: 700;
    color: var(--color-orange);
    text-transform: uppercase;
    margin-bottom: 24px;
}

/* About Section Text Animations */
.about-section .section-label,
.about-section .section-title,
.about-section .about-text,
.about-section .btn-secondary {
    opacity: 0;
    transform: translateY(30px);
}

.about-section.in-view .section-label {
    animation: aboutTextAppear 0.8s ease-out 0.2s forwards;
}

.about-section.in-view .section-title {
    animation: aboutTextAppear 0.8s ease-out 0.4s forwards;
}

.about-section.in-view .about-text:nth-of-type(1) {
    animation: aboutTextAppear 0.8s ease-out 0.6s forwards;
}

.about-section.in-view .about-text:nth-of-type(2) {
    animation: aboutTextAppear 0.8s ease-out 0.8s forwards;
}

.about-section.in-view .btn-secondary {
    animation: aboutTextAppear 0.8s ease-out 1s forwards;
}

.about-section .about-image-wrapper {
    opacity: 0;
    transform: translateX(50px);
}

.about-section.in-view .about-image-wrapper {
    animation: aboutImageAppear 1s ease-out 0.3s forwards;
}

@keyframes aboutTextAppear {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes aboutImageAppear {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.section-title {
    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: 400;
    line-height: 1.34;
    color: var(--color-text-brown);
    margin-bottom: 31px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-text {
    font-size: 20px;
    color: var(--color-text-brown);
    margin-bottom: 24px;
    line-height: 1.6;
}

.about-image-wrapper {
    position: relative;
    flex-shrink: 0;
    width: 720px;
}

.about-image-bg {
    position: absolute;
    top: 75px;
    left: -96px;
    width: 720px;
    height: 609px;
    background-color: var(--color-peach);
    z-index: 0;
}

.about-image {
    position: relative;
    width: 720px;
    height: 609px;
    object-fit: cover;
    z-index: 1;
}

/* ===================================
   Expertise Section
   =================================== */
.expertise-section {
    background-color: var(--color-cream-dark);
    padding: 60px 0;
    position: relative;
    min-height: 842px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.atom-animation {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    max-width: 900px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
}

.atom-animation object {
    width: 100%;
    height: 100%;
}

.expertise-circles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
}

.circle {
    position: absolute;
    border-radius: 50%;
    transition: transform 0.15s ease-out;
    will-change: transform;
    object-fit: cover;
}

.circle-1 {
    width: 362px;
    height: 362px;
    left: 105px;
    top: 96px;
}

.circle-2 {
    width: 265px;
    height: 265px;
    left: 334px;
    top: 246px;
}

.circle-3 {
    width: 399px;
    height: 399px;
    right: 105px;
    top: 428px;
}

.circle-4 {
    width: 221px;
    height: 221px;
    right: 350px;
    top: 166px;
}

.circle-5 {
    width: 171px;
    height: 171px;
    left: calc(50% - 85px);
    top: 620px;
}

.expertise-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 703px;
    margin: 0 auto;
}

.expertise-title {
    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: 400;
    line-height: 1.34;
    color: var(--color-text-brown);
    margin-bottom: 28px;
    letter-spacing: 1px;
}

.expertise-text {
    font-size: 20px;
    color: var(--color-text-brown);
    margin-bottom: 20px;
}

/* Expertise Section Text Animations */
.expertise-section .expertise-title,
.expertise-section .expertise-text {
    opacity: 0;
    transform: translateY(30px);
}

.expertise-section.in-view .expertise-title {
    animation: aboutTextAppear 0.8s ease-out 0.2s forwards;
}

.expertise-section.in-view .expertise-text:nth-of-type(1) {
    animation: aboutTextAppear 0.8s ease-out 0.5s forwards;
}

.expertise-section.in-view .expertise-text:nth-of-type(2) {
    animation: aboutTextAppear 0.8s ease-out 0.8s forwards;
}

/* ===================================
   IP Section
   =================================== */
.ip-section {
    padding: 100px 0;
    position: relative;
}

.ip-container {
    display: flex;
    gap: 100px;
    align-items: center;
}

.ip-image-wrapper {
    flex-shrink: 0;
}

.ip-image {
    width: 715px;
    height: 715px;
    object-fit: cover;
}

.ip-content {
    position: relative;
    max-width: 585px;
    z-index: 1;
}

.ip-motif {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 413px;
    height: 883px;
    pointer-events: none;
    z-index: 0;
}

.ip-motif img {
    width: 100%;
    height: 100%;
}

.ip-title {
    font-size: 44px;
}

.ip-text {
    font-size: 20px;
    color: var(--color-text-brown);
    margin-bottom: 24px;
    line-height: 1.6;
}

/* IP Section Text Animations */
.ip-section .ip-content .section-label,
.ip-section .ip-content .section-title,
.ip-section .ip-content .ip-text {
    opacity: 0;
    transform: translateY(30px);
}

.ip-section .ip-image-wrapper {
    opacity: 0;
    transform: translateX(-50px);
}

.ip-section.in-view .ip-image-wrapper {
    animation: ipImageAppear 1s ease-out 0.2s forwards;
}

.ip-section.in-view .ip-content .section-label {
    animation: aboutTextAppear 0.8s ease-out 0.3s forwards;
}

.ip-section.in-view .ip-content .section-title {
    animation: aboutTextAppear 0.8s ease-out 0.5s forwards;
}

.ip-section.in-view .ip-content .ip-text:nth-of-type(1) {
    animation: aboutTextAppear 0.8s ease-out 0.7s forwards;
}

.ip-section.in-view .ip-content .ip-text:nth-of-type(2) {
    animation: aboutTextAppear 0.8s ease-out 0.9s forwards;
}

.ip-section.in-view .ip-content .ip-text:nth-of-type(3) {
    animation: aboutTextAppear 0.8s ease-out 1.1s forwards;
}

@keyframes ipImageAppear {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===================================
   Why Section
   =================================== */
.why-section {
    background-color: var(--color-secondary-brown);
    padding: 70px 0;
}

.why-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.why-title-wrapper {
    position: relative;
}

.why-title-wrapper::after {
    content: '';
    position: absolute;
    top: 28px;
    left: 0;
    width: 240px;
    height: 24px;
    background-color: #574e47;
    z-index: 0;
}

.why-title {
    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: 400;
    line-height: 1.3;
    color: var(--color-white);
    position: relative;
    z-index: 1;
    letter-spacing: 1px;
}

.why-description {
    font-size: 20px;
    color: #d6d6d6;
    max-width: 703px;
    line-height: 1.6;
}

/* Why Section Text Animations */
.why-section .why-title,
.why-section .why-description {
    opacity: 0;
    transform: translateY(30px);
}

.why-section .why-cards-wrapper {
    opacity: 0;
    transform: translateY(40px);
}

.why-section.in-view .why-title {
    animation: aboutTextAppear 0.8s ease-out 0.2s forwards;
}

.why-section.in-view .why-description {
    animation: aboutTextAppear 0.8s ease-out 0.5s forwards;
}

.why-section.in-view .why-cards-wrapper {
    animation: aboutTextAppear 0.8s ease-out 0.8s forwards;
}

.why-cards-wrapper {
    position: relative;
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding-left: var(--container-padding);
}

.why-cards {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0 50px 20px 0;
}

.why-cards::-webkit-scrollbar {
    display: none;
}

.why-card {
    flex: 0 0 410px;
    background-color: var(--color-cream-light);
    padding: 39px 23px 40px;
    position: relative;
    scroll-snap-align: start;
}

.card-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 16px;
    height: 16px;
}

.card-accent.pink {
    background-color: var(--color-pink-dark);
}

.card-accent.orange {
    background-color: var(--color-orange-dark);
}

.card-icon {
    width: 93px;
    height: 93px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 26px;
}

.card-icon.pink-icon {
    background-color: var(--color-pink-dark);
}

.card-icon.orange-icon {
    background-color: var(--color-orange-dark);
}

.card-icon img {
    width: 50px;
    height: auto;
    filter: brightness(0) invert(1);
}

.card-title {
    font-family: var(--font-primary);
    font-size: 34px;
    font-weight: 500;
    color: var(--color-text-light);
    text-transform: uppercase;
    margin-bottom: 26px;
    line-height: 1.2;
}

.card-text {
    font-size: 20px;
    color: var(--color-text-gray);
    line-height: 1.5;
}

.why-nav {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 40px;
}

.nav-arrow {
    width: 97px;
    height: 97px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    transition: var(--transition-normal);
    background: transparent;
}

.nav-arrow svg {
    width: 32px;
    height: 32px;
}

.nav-arrow:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--color-white);
}

.nav-arrow.gold {
    border-color: rgba(92, 79, 6, 0.3);
    color: var(--color-text-brown);
}

.nav-arrow.gold:hover {
    background-color: rgba(92, 79, 6, 0.1);
    border-color: var(--color-text-brown);
}

/* ===================================
   Formulations Section
   =================================== */
.formulations-section {
    padding: 70px 0;
}

.formulations-title {
    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: 400;
    line-height: 1.34;
    color: var(--color-text-brown);
    margin-bottom: 60px;
    letter-spacing: 1px;
}

.formulations-cards-wrapper {
    position: relative;
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding-left: var(--container-padding);
}

.formulations-grid {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0 50px 20px 0;
}

.formulations-grid::-webkit-scrollbar {
    display: none;
}

.formulation-card {
    flex: 0 0 calc((100vw - var(--container-padding) - 110px) / 3);
    max-width: 500px;
    height: 570px;
    position: relative;
    overflow: hidden;
    scroll-snap-align: start;
}

.formulation-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.formulation-card:hover img {
    transform: scale(1.05);
}

.formulation-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(93, 80, 32, 0.2) 100%),
                linear-gradient(90deg, rgba(93, 80, 32, 0.19) 0%, rgba(93, 80, 32, 0.19) 100%);
}

.formulation-name {
    position: absolute;
    bottom: 40px;
    left: 34px;
    font-size: 34px;
    font-weight: 400;
    color: var(--color-white);
    text-transform: uppercase;
}

.formulations-nav {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 40px;
}

/* ===================================
   Consultation Section
   =================================== */
.consultation-section {
    background-color: var(--color-cream-dark);
}

.consultation-container {
    display: flex;
    min-height: 788px;
}

.consultation-content {
    flex: 1;
    padding: 100px 100px;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.consultation-title {
    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: 400;
    line-height: 1.34;
    color: var(--color-text-brown);
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.consultation-text {
    font-size: 20px;
    color: var(--color-text-brown);
    margin-bottom: 30px;
    max-width: 398px;
}

.consultation-image {
    flex: 0 0 975px;
    overflow: hidden;
}

.consultation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease-out;
}

.consultation-image:hover img {
    transform: scale(1.08);
}

/* ===================================
   Footer
   =================================== */
.footer {
    background-color: var(--color-secondary-brown);
    padding-top: 80px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    padding-bottom: 80px;
}

.footer-brand {
    max-width: 398px;
}

.footer-logo {
    width: 262px;
    height: auto;
    margin-bottom: 40px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 52px;
    height: 52px;
    background-color: #726023;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.social-link:hover {
    background-color: var(--color-orange);
}

.social-link img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.footer-links a {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-cream-dark);
    text-transform: uppercase;
}

.footer-links a:hover {
    color: var(--color-orange);
}

.footer-subscribe {
    max-width: 430px;
}

.footer-subscribe h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-cream-dark);
    margin-bottom: 30px;
}

.footer-subscribe p {
    font-size: 18px;
    color: var(--color-cream-dark);
    margin-bottom: 30px;
}

.subscribe-form {
    display: flex;
    position: relative;
}

.subscribe-form input {
    flex: 1;
    height: 77px;
    padding: 0 20px;
    border: 1px solid #a6a6a6;
    background-color: #473a0c;
    color: var(--color-white);
    font-size: 16px;
    font-family: inherit;
    outline: none;
}

.subscribe-form input:focus {
    border-color: var(--color-orange);
}

.subscribe-form input::placeholder {
    color: #a6a6a6;
}

.subscribe-form button {
    width: 96px;
    height: 77px;
    background-color: var(--color-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    transition: var(--transition-normal);
    flex-shrink: 0;
}

.subscribe-form button svg {
    transform: rotate(180deg);
}

.subscribe-form button:hover {
    background-color: #e09430;
}

.footer-bottom {
    border-top: 1px solid rgba(240, 230, 215, 0.2);
    padding: 20px 0;
}

.footer-bottom p {
    font-size: 20px;
    color: var(--color-cream-dark);
    text-align: center;
}

/* ===================================
   Responsive Styles - Large Screens (1200px - 1919px)
   =================================== */
@media (max-width: 1919px) {
    /* Hero */
    .hero {
        height: 700px;
    }

    .hero-content {
        padding: 150px 60px 50px 80px;
    }

    .hero-dots {
        left: 80px;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-description {
        font-size: 18px;
    }

    /* About */
    .about-image-wrapper {
        width: 600px;
    }

    .about-image {
        width: 600px;
        height: 500px;
    }

    .about-image-bg {
        width: 600px;
        height: 500px;
        top: 60px;
        left: -80px;
    }

    /* Section Titles */
    .section-title,
    .expertise-title,
    .why-title,
    .formulations-title,
    .consultation-title {
        font-size: 38px;
    }

    .section-label {
        font-size: 18px;
    }

    .about-text,
    .expertise-text,
    .ip-text,
    .why-description,
    .consultation-text {
        font-size: 18px;
    }

    /* IP Section */
    .ip-image {
        width: 600px;
        height: 600px;
    }

    .ip-motif {
        width: 350px;
        height: 750px;
    }

    /* Why Cards */
    .why-card {
        flex: 0 0 360px;
    }

    .card-title {
        font-size: 28px;
    }

    .card-text {
        font-size: 18px;
    }

    .card-icon {
        width: 80px;
        height: 80px;
    }

    .nav-arrow {
        width: 80px;
        height: 80px;
    }

    /* Formulations */
    .formulation-card {
        flex: 0 0 calc((100vw - 80px - 90px) / 3);
        max-width: 400px;
        height: 500px;
    }

    .formulation-name {
        font-size: 28px;
    }

    /* Footer */
    .footer-links a {
        font-size: 19px;
    }

    .footer-subscribe h3 {
        font-size: 21px;
    }
}

/* ===================================
   Responsive Styles - Medium Large Screens (1200px - 1400px)
   =================================== */
@media (max-width: 1400px) {
    /* Hero */
    .hero {
        height: 600px;
    }

    .hero-content {
        padding: 120px 40px 40px 60px;
    }

    .hero-dots {
        left: 60px;
    }

    .hero-title {
        font-size: 42px;
    }

    /* About */
    .about-content {
        max-width: 450px;
    }

    .about-image-wrapper {
        width: 500px;
    }

    .about-image {
        width: 500px;
        height: 420px;
    }

    .about-image-bg {
        width: 500px;
        height: 420px;
        top: 50px;
        left: -60px;
    }

    /* Section Titles */
    .section-title,
    .expertise-title,
    .why-title,
    .formulations-title,
    .consultation-title {
        font-size: 34px;
    }

    /* IP Section */
    .ip-image {
        width: 500px;
        height: 500px;
    }

    .ip-motif {
        width: 300px;
        height: 640px;
    }

    /* Why Cards */
    .why-card {
        flex: 0 0 320px;
        padding: 30px 20px;
    }

    .card-title {
        font-size: 24px;
    }

    .card-text {
        font-size: 16px;
    }

    /* Formulations */
    .formulation-card {
        flex: 0 0 calc((100vw - 60px - 90px) / 3);
        max-width: 350px;
        height: 450px;
    }

    .formulation-name {
        font-size: 26px;
    }

    /* Consultation */
    .consultation-image {
        flex: 0 0 700px;
    }

}

/* ===================================
   Responsive Styles - Tablet (1024px)
   =================================== */
@media (max-width: 1024px) {
    :root {
        --container-padding: 50px;
    }

    .nav-links {
        display: none;
    }

    .nav .btn {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    /* Hero */
    .hero {
        height: 600px;
    }

    .hero-content {
        width: 50%;
        padding: 120px 40px 40px 50px;
    }

    .hero-dots {
        left: 50px;
    }

    .hero-title {
        font-size: 42px;
        line-height: 52px;
    }

    .hero-description {
        font-size: 18px;
    }

    /* About */
    .about-container {
        flex-direction: column;
        gap: 60px;
    }

    .about-content {
        max-width: 100%;
        padding-top: 0;
    }

    .about-image-wrapper {
        width: 100%;
    }

    .about-image {
        width: 100%;
        height: 450px;
    }

    .about-image-bg {
        width: calc(100% + 50px);
        height: 450px;
        top: 40px;
        left: -25px;
    }

    /* Expertise */
    .expertise-section {
        min-height: 600px;
    }

    .circle-1, .circle-2, .circle-3, .circle-4, .circle-5 {
        display: none;
    }

    .atom-animation {
        display: block;
        width: 350px;
        height: 350px;
        max-width: none;
        opacity: 0.4;
    }

    /* IP Section */
    .ip-container {
        flex-direction: column;
        gap: 20px;
    }

    .ip-image {
        width: 100%;
        height: 500px;
    }

    .ip-motif {
        width: 250px;
        height: 535px;
    }

    /* Why Section */
    .why-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .why-card {
        flex: 0 0 350px;
    }

    .card-title {
        font-size: 28px;
    }

    .card-text {
        font-size: 18px;
    }

    /* Formulations */
    .formulation-card {
        flex: 0 0 calc((100vw - 50px - 90px) / 3);
        max-width: 320px;
        height: 450px;
    }

    /* Consultation */
    .consultation-container {
        flex-direction: column;
        min-height: auto;
    }

    .consultation-content {
        padding: 60px 40px;
    }

    .consultation-image {
        flex: none;
        height: 400px;
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
        gap: 50px;
    }

    .footer-links {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px 40px;
    }

    .footer-links a {
        font-size: 16px;
    }

    .footer-subscribe {
        max-width: 100%;
    }
}

/* ===================================
   Responsive Styles - Mobile (768px)
   =================================== */
@media (max-width: 768px) {
    :root {
        --container-padding: 30px;
    }

    .announcement-text {
        font-size: 14px;
    }

    .nav {
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .logo img {
        width: 150px;
        height: auto;
    }

    /* Hero - Mobile 50/50 Layout */
    .hero {
        height: auto;
    }

    .hero-slider {
        position: relative;
        height: auto;
    }

    .hero-slide {
        position: absolute;
        flex-direction: column;
        inset: auto;
        width: 100%;
    }

    .hero-slide.active {
        position: relative;
    }

    .hero-images {
        flex-direction: column;
        position: relative;
    }

    .hero-image-left {
        width: 100%;
        height: 50vh;
        min-height: 350px;
    }

    .hero-image-right {
        display: block;
        width: 100%;
        height: 50vh;
        min-height: 350px;
    }

    .hero-content {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 50vh;
        min-height: 350px;
        padding: 40px 30px 60px 30px;
        justify-content: center;
    }

    .hero-dots {
        left: 30px;
        bottom: auto;
        top: calc(50vh - 30px);
        min-height: auto;
    }

    .hero-title {
        font-size: 28px;
        line-height: 36px;
    }

    .hero-description {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .hero-slide .btn-primary {
        margin-bottom: 20px;
    }

    .hero-logos {
        gap: 20px;
        margin-top: 20px;
    }

    .hero-logo {
        max-height: 60px;
    }

    .hero-logo:first-child {
        width: 100px;
    }

    .hero-logo:last-child {
        width: 180px;
    }

    .btn {
        padding: 14px 18px;
        font-size: 14px;
    }

    /* Trust Banner */
    .trust-item span {
        font-size: 16px;
    }

    /* About */
    .section-label {
        font-size: 16px;
    }

    .section-title {
        font-size: 32px;
        line-height: 42px;
    }

    .about-text {
        font-size: 16px;
    }

    .about-image {
        height: 350px;
    }

    .about-image-bg {
        height: 350px;
        top: 30px;
    }

    /* Expertise */
    .expertise-section {
        min-height: auto;
        padding: 30px 0;
    }

    .atom-animation {
        width: 300px;
        height: 300px;
    }

    .expertise-title {
        font-size: 32px;
        line-height: 42px;
    }

    .expertise-text {
        font-size: 16px;
    }

    .expertise-content {
        padding-top: 20px;
    }

    /* IP Section */
    .ip-image {
        height: 400px;
    }

    .ip-motif {
        width: 143px;
        height: 306px;
        right: 26px;
        top: 50%;
        bottom: auto;
        transform: none;
    }

    .ip-title {
        font-size: 32px;
    }

    .ip-text {
        font-size: 16px;
    }

    /* Why Section */
    .why-title {
        font-size: 32px;
        line-height: 42px;
    }

    .why-title-wrapper::after {
        width: 200px;
        height: 20px;
        bottom: 40px;
    }

    .why-description {
        font-size: 16px;
    }

    .why-card {
        flex: 0 0 300px;
        padding: 30px 20px;
    }

    .card-icon {
        width: 70px;
        height: 70px;
    }

    .card-title {
        font-size: 24px;
    }

    .card-text {
        font-size: 16px;
    }

    .nav-arrow {
        width: 60px;
        height: 60px;
    }

    /* Formulations */
    .formulations-title {
        font-size: 28px;
        line-height: 38px;
    }

    .formulations-grid {
        gap: 20px;
    }

    .formulation-card {
        flex: 0 0 calc((100vw - 30px - 60px) / 2.3);
        max-width: 280px;
        height: 380px;
    }

    .formulation-name {
        font-size: 24px;
        bottom: 30px;
        left: 20px;
    }

    /* Consultation */
    .consultation-section {
        padding: 0;
    }

    .consultation-container {
        min-height: auto;
    }

    .consultation-content {
        padding: 50px 25px;
    }

    .consultation-title {
        font-size: 26px;
        line-height: 34px;
        margin-bottom: 20px;
    }

    .consultation-text {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .consultation-image {
        height: 304px;
    }

    /* Footer */
    .footer {
        padding-top: 60px;
    }

    .footer-logo {
        width: 200px;
    }

    .social-link {
        width: 48px;
        height: 48px;
    }

    .social-link img {
        width: 20px;
        height: 20px;
    }

    .footer-links a {
        font-size: 14px;
    }

    .footer-subscribe h3 {
        font-size: 19px;
    }

    .footer-subscribe p {
        font-size: 16px;
    }

    .subscribe-form input,
    .subscribe-form button {
        height: 60px;
    }

    .footer-bottom p {
        font-size: 14px;
    }
}

/* ===================================
   Responsive Styles - Small Mobile (480px)
   =================================== */
@media (max-width: 480px) {
    :root {
        --container-padding: 20px;
    }

    .announcement-text {
        font-size: 12px;
    }

    .nav {
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .logo img {
        width: 120px;
        height: auto;
    }

    /* Hero - Mobile 50/50 Layout */
    .hero-image-left {
        height: 45vh;
        min-height: 300px;
    }

    .hero-image-right {
        height: 45vh;
        min-height: 300px;
    }

    .hero-content {
        height: 45vh;
        min-height: 300px;
        padding: 30px 20px 50px 20px;
    }

    .hero-dots {
        left: 20px;
        top: calc(45vh - 25px);
    }

    .hero-title {
        font-size: 22px;
        line-height: 30px;
        margin-bottom: 15px;
    }

    .hero-description {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .btn {
        padding: 12px 16px;
        font-size: 12px;
    }

    .hero-slide .btn-primary {
        margin-bottom: 15px;
    }

    .hero-logos {
        gap: 15px;
        margin-top: 15px;
        flex-wrap: wrap;
    }

    .hero-logo {
        max-height: 45px;
    }

    .hero-logo:first-child {
        width: 80px;
    }

    .hero-logo:last-child {
        width: 140px;
    }

    .hero-dots {
        gap: 4px;
    }

    .dot {
        width: 12px;
        height: 12px;
    }

    .dot.active {
        width: 24px;
    }

    /* About */
    .about-section {
        padding: 30px 0 40px;
    }

    .section-label {
        font-size: 14px;
    }

    .section-title {
        font-size: 26px;
        line-height: 34px;
    }

    .about-text {
        font-size: 14px;
    }

    .about-image {
        height: 280px;
    }

    .about-image-bg {
        height: 280px;
        top: 20px;
        left: -10px;
        width: calc(100% + 20px);
    }

    /* Expertise */
    .expertise-title {
        font-size: 26px;
        line-height: 34px;
    }

    .atom-animation {
        width: 250px;
        height: 250px;
    }

    .expertise-text {
        font-size: 14px;
    }

    /* IP Section */
    .ip-section {
        padding: 10px 0;
    }

    .ip-image {
        height: 300px;
    }

    .ip-motif {
        width: 115px;
        height: 246px;
        right: 20px;
        top: 50%;
        bottom: auto;
        transform: none;
    }

    .ip-title {
        font-size: 26px;
    }

    .ip-text {
        font-size: 14px;
    }

    /* Why Section */
    .why-section {
        padding: 40px 0;
    }

    .why-title {
        font-size: 26px;
        line-height: 34px;
    }

    .why-title-wrapper::after {
        width: 150px;
        height: 16px;
        bottom: 30px;
    }

    .why-description {
        font-size: 14px;
    }

    .why-card {
        flex: 0 0 260px;
        padding: 25px 15px;
    }

    .card-icon {
        width: 60px;
        height: 60px;
    }

    .card-icon img {
        width: 35px;
    }

    .card-title {
        font-size: 20px;
    }

    .card-text {
        font-size: 14px;
    }

    .nav-arrow {
        width: 50px;
        height: 50px;
    }

    .nav-arrow svg {
        width: 24px;
        height: 24px;
    }

    /* Formulations */
    .formulations-section {
        padding: 40px 0;
    }

    .formulations-title {
        font-size: 22px;
        line-height: 30px;
        margin-bottom: 40px;
    }

    .formulations-grid {
        gap: 15px;
    }

    .formulation-card {
        flex: 0 0 calc((100vw - 20px - 45px) / 1.8);
        max-width: 240px;
        height: 320px;
    }

    .formulation-name {
        font-size: 20px;
        bottom: 20px;
        left: 15px;
    }

    /* Consultation */
    .consultation-section {
        padding: 0;
    }

    .consultation-container {
        min-height: auto;
    }

    .consultation-content {
        padding: 40px 20px 35px;
    }

    .consultation-title {
        font-size: 22px;
        line-height: 28px;
        margin-bottom: 15px;
    }

    .consultation-text {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .consultation-image {
        height: 260px;
    }

    /* Footer */
    .footer {
        padding-top: 40px;
    }

    .footer-content {
        padding-bottom: 40px;
    }

    .footer-logo {
        width: 160px;
        margin-bottom: 30px;
    }

    .social-link {
        width: 44px;
        height: 44px;
    }

    .social-link img {
        width: 18px;
        height: 18px;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }

    .footer-links a {
        font-size: 13px;
    }

    .footer-subscribe h3 {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .footer-subscribe p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .subscribe-form input,
    .subscribe-form button {
        height: 50px;
    }

    .subscribe-form button {
        width: 70px;
    }

    .footer-bottom p {
        font-size: 12px;
    }
}

/* ===================================
   Scroll Animations
   =================================== */
.about-section,
.expertise-section,
.ip-section,
.why-section,
.formulations-section,
.consultation-section {
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

/* ===================================
   Utility Classes
   =================================== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ===================================
   About Page Styles
   =================================== */

/* About Hero Section */
.about-hero {
    display: flex;
    height: 826px;
    position: relative;
}

.about-hero-image {
    flex: 0 0 50%;
    position: relative;
}

.about-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.breadcrumb {
    position: absolute;
    top: 37px;
    left: 76px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-primary);
    font-size: 20px;
    color: var(--color-white);
    z-index: 2;
}

.breadcrumb a {
    color: var(--color-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--color-primary-gold);
}

.breadcrumb svg {
    color: var(--color-white);
}

.about-hero-content {
    flex: 0 0 50%;
    background-color: #51420f;
    padding: 268px 92px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-hero-content .section-label {
    margin-bottom: 31px;
}

.about-hero-title {
    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: 400;
    line-height: 1.34;
    color: var(--color-white);
    margin-bottom: 31px;
    letter-spacing: 1px;
}

.about-hero-text {
    font-family: var(--font-primary);
    font-size: 20px;
    line-height: 1.6;
    color: var(--color-white);
    margin-bottom: 24px;
    max-width: 703px;
}

/* About Hero Animations */
.about-hero-image {
    opacity: 0;
    animation: aboutHeroImageAppear 1.2s ease-out 0.2s forwards;
}

.about-hero-content .section-label {
    opacity: 0;
    transform: translateY(30px);
    animation: aboutHeroTextAppear 0.8s ease-out 0.4s forwards;
}

.about-hero-title {
    opacity: 0;
    transform: translateY(30px);
    animation: aboutHeroTextAppear 0.8s ease-out 0.6s forwards;
}

.about-hero-text {
    opacity: 0;
    transform: translateY(30px);
}

.about-hero-text:nth-of-type(1) {
    animation: aboutHeroTextAppear 0.8s ease-out 0.8s forwards;
}

.about-hero-text:nth-of-type(2) {
    animation: aboutHeroTextAppear 0.8s ease-out 1s forwards;
}

.breadcrumb {
    opacity: 0;
    animation: aboutHeroTextAppear 0.8s ease-out 0.3s forwards;
}

@keyframes aboutHeroImageAppear {
    0% {
        opacity: 0;
        clip-path: inset(0 100% 0 0);
    }
    100% {
        opacity: 1;
        clip-path: inset(0 0 0 0);
    }
}

@keyframes aboutHeroTextAppear {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About Page Section Animations */
.founder-section,
.development-section,
.team-section {
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

/* Founder Section */
.founder-section {
    background-color: var(--color-cream);
    padding: 100px 0;
}

.founder-container {
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

.founder-content {
    flex: 0 0 calc(50% - 30px);
}

.founder-title {
    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: 400;
    line-height: 1.34;
    color: var(--color-text-brown);
    margin-bottom: 31px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.founder-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.founder-card {
    background-color: transparent;
    border: 1px solid #bbb08b;
    border-radius: 0;
    padding: 25px 30px;
}

.founder-card-title {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.3;
    color: #63584e;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.founder-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.founder-card-list li {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: #5c4f06;
    padding-left: 20px;
    position: relative;
    margin-bottom: 12px;
}

.founder-card-list li:last-child {
    margin-bottom: 0;
}

.founder-card-list li::before {
    content: "o";
    position: absolute;
    left: 0;
    color: #5c4f06;
}

.founder-image {
    flex: 0 0 calc(50% - 30px);
}

.founder-image-container {
    position: relative;
    display: inline-block;
}

.founder-image-container img {
    position: relative;
    width: 100%;
    max-width: 761px;
    height: auto;
    object-fit: cover;
    z-index: 2;
}

.founder-image-decoration {
    position: absolute;
    background-color: #ffe6ca;
    width: 80%;
    height: 65%;
    right: -40px;
    bottom: -40px;
    z-index: 1;
}

/* Founder Section Animations */
.founder-title {
    opacity: 0;
    transform: translateY(30px);
}

.founder-card {
    opacity: 0;
    transform: translateY(30px);
}

.founder-card:nth-child(1) {
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    transition-delay: 0.2s;
}

.founder-card:nth-child(2) {
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    transition-delay: 0.4s;
}

.founder-card:nth-child(3) {
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    transition-delay: 0.6s;
}

.founder-image {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    transition-delay: 0.3s;
}

.founder-section.in-view .founder-title {
    animation: founderTextAppear 0.8s ease-out forwards;
}

.founder-section.in-view .founder-card {
    opacity: 1;
    transform: translateY(0);
}

.founder-section.in-view .founder-image {
    opacity: 1;
    transform: translateX(0);
}

@keyframes founderTextAppear {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Development Cycle Section */
.development-section {
    background-color: var(--color-cream-dark);
    padding: 100px 0;
}

.development-header {
    margin-bottom: 60px;
}

.development-title {
    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: 400;
    line-height: 1.34;
    color: var(--color-text-brown);
    letter-spacing: 1px;
    margin-bottom: 31px;
}

/* Accordion */
.accordion {
    display: flex;
    flex-direction: column;
}

.accordion-item {
    border-bottom: 1px solid rgba(92, 79, 6, 0.2);
}

.accordion-item:first-child {
    border-top: 1px solid rgba(92, 79, 6, 0.2);
}

.accordion-header {
    display: flex;
    align-items: center;
    padding: 30px 0;
    cursor: pointer;
    gap: 20px;
}

.accordion-number {
    font-family: var(--font-primary);
    font-size: 28px;
    font-weight: 500;
    color: #DA6DA9;
    min-width: 50px;
}

.accordion-title {
    font-family: var(--font-primary);
    font-size: 28px;
    font-weight: 500;
    color: var(--color-text-brown);
    flex: 1;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.accordion-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--color-text-brown);
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.accordion-toggle:hover {
    background-color: var(--color-text-brown);
}

.accordion-toggle:hover svg {
    stroke: var(--color-cream);
}

.accordion-toggle svg {
    color: var(--color-text-brown);
    transition: color 0.3s ease;
}

.accordion-toggle .icon-minus {
    display: none;
}

.accordion-item.active .accordion-toggle .icon-plus {
    display: none;
}

.accordion-item.active .accordion-toggle .icon-minus {
    display: block;
}

.accordion-item.active .accordion-toggle {
    background-color: var(--color-text-brown);
}

.accordion-item.active .accordion-toggle svg {
    color: var(--color-cream);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-item.active .accordion-content {
    max-height: 200px;
    padding-bottom: 30px;
}

.accordion-content p {
    font-family: var(--font-primary);
    font-size: 18px;
    line-height: 1.7;
    color: var(--color-text-brown);
    padding-left: 70px;
    max-width: 1200px;
}

/* Specialize List Styles */
.specialize-heading {
    font-weight: 600 !important;
    margin-top: 20px !important;
    margin-bottom: 15px !important;
    color: var(--color-text-brown) !important;
}

.specialize-list {
    list-style: none;
    padding-left: 70px;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 30px;
    max-width: 1000px;
}

.specialize-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-primary);
    font-size: 16px;
    color: var(--color-text-brown);
    line-height: 1.5;
}

.specialize-list .list-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.specialize-list .list-icon svg {
    width: 20px;
    height: 20px;
}

/* Increase max-height for accordion with list */
.accordion-item.active .accordion-content:has(.specialize-list) {
    max-height: 500px;
}

/* Team Section */
.team-section {
    background-color: var(--color-cream);
    padding: 100px 0;
}

.team-title {
    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: 400;
    line-height: 1.34;
    color: var(--color-text-brown);
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 1px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 34px;
}

.team-card {
    text-align: left;
}

.team-card-image {
    width: 100%;
    aspect-ratio: 400 / 480;
    overflow: hidden;
    margin-bottom: 24px;
    background-color: var(--color-cream-dark);
}

.team-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card-name {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 400;
    color: var(--color-text-brown);
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.team-card-role {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.5;
    color: var(--color-text-brown);
    margin-bottom: 16px;
}

.team-card-linkedin {
    display: inline-flex;
    color: var(--color-text-brown);
    transition: color 0.3s ease;
}

.team-card-linkedin:hover {
    color: var(--color-primary-pink);
}

.team-nav {
    display: none;
    justify-content: center;
    gap: 14px;
    margin-top: 40px;
}

/* Team Section Animations */
.team-title {
    opacity: 0;
    transform: translateY(30px);
}

.team-card {
    opacity: 0;
    transform: translateY(-50px);
}

.team-card:nth-child(1) {
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    transition-delay: 0.1s;
}

.team-card:nth-child(2) {
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    transition-delay: 0.2s;
}

.team-card:nth-child(3) {
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    transition-delay: 0.3s;
}

.team-card:nth-child(4) {
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    transition-delay: 0.4s;
}

.team-section.in-view .team-title {
    animation: teamTextAppear 0.8s ease-out forwards;
}

.team-section.in-view .team-card {
    opacity: 1;
    transform: translateY(0);
}

@keyframes teamTextAppear {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   About Page Responsive - Tablet (1024px)
   =================================== */
@media (max-width: 1024px) {
    .about-hero {
        height: auto;
        min-height: 600px;
    }

    .about-hero-content {
        padding: 60px 50px;
    }

    .about-hero-title {
        font-size: 38px;
    }

    .breadcrumb {
        left: 40px;
        font-size: 16px;
    }

    .founder-title {
        font-size: 48px;
    }

    .founder-image {
        flex: 0 0 500px;
    }

    .development-title {
        font-size: 44px;
    }

    .accordion-number,
    .accordion-title {
        font-size: 24px;
    }

    .team-title {
        font-size: 44px;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

/* ===================================
   About Page Responsive - Mobile (768px)
   =================================== */
@media (max-width: 768px) {
    .about-hero {
        flex-direction: column;
        height: auto;
        min-height: auto;
    }

    .about-hero-image {
        flex: none;
        max-width: 100%;
        height: 350px;
    }

    .about-hero-content {
        padding: 50px 25px;
    }

    .about-hero-title {
        font-size: 32px;
        line-height: 42px;
        margin-bottom: 20px;
    }

    .about-hero-text {
        font-size: 16px;
    }

    .breadcrumb {
        top: 25px;
        left: 25px;
        font-size: 14px;
    }

    /* Founder Section Mobile */
    .founder-section {
        padding: 60px 0;
    }

    .founder-container {
        flex-direction: column;
        gap: 30px;
    }

    .founder-content {
        flex: none;
        width: 100%;
        max-width: none;
    }

    .founder-title {
        font-size: 32px;
        line-height: 1.2;
        margin-bottom: 25px;
    }

    .founder-cards {
        gap: 25px;
    }

    .founder-card {
        padding: 25px 20px;
    }

    .founder-card-title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .founder-card-list li {
        font-size: 15px;
    }

    .founder-image {
        flex: none;
        width: 100%;
        order: -1;
        display: flex;
        justify-content: center;
    }

    .founder-image-container {
        max-width: 350px;
        margin: 0 auto;
    }

    .founder-image-container img {
        max-width: 100%;
    }

    .founder-image-decoration {
        right: -20px;
        bottom: -20px;
    }

    /* Development Section Mobile */
    .development-section {
        padding: 60px 0;
    }

    .development-title {
        font-size: 28px;
    }

    .accordion-header {
        padding: 20px 0;
        gap: 15px;
    }

    .accordion-number {
        font-size: 18px;
        min-width: 35px;
    }

    .accordion-title {
        font-size: 16px;
    }

    .accordion-toggle {
        width: 44px;
        height: 44px;
    }

    .accordion-toggle svg {
        width: 20px;
        height: 20px;
    }

    .accordion-content p {
        font-size: 14px;
        padding-left: 50px;
    }

    .specialize-list {
        padding-left: 50px;
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .specialize-list li {
        font-size: 14px;
    }

    .specialize-list .list-icon svg {
        width: 18px;
        height: 18px;
    }

    /* Team Section Mobile */
    .team-section {
        padding: 60px 0;
    }

    .team-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .team-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 20px;
        padding: 0 20px 20px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .team-grid::-webkit-scrollbar {
        display: none;
    }

    .team-card {
        flex: 0 0 280px;
        scroll-snap-align: start;
    }

    .team-card-name {
        font-size: 20px;
    }

    .team-card-role {
        font-size: 13px;
    }

    .team-nav {
        display: flex;
    }

    .team-nav .nav-arrow {
        width: 60px;
        height: 60px;
    }
}

/* ===================================
   About Page Responsive - Small Mobile (480px)
   =================================== */
@media (max-width: 480px) {
    .about-hero-image {
        height: 280px;
    }

    .about-hero-content {
        padding: 30px 20px;
    }

    .about-hero-title {
        font-size: 26px;
        line-height: 34px;
    }

    .about-hero-text {
        font-size: 14px;
    }

    .breadcrumb {
        top: 20px;
        left: 20px;
        font-size: 13px;
    }

    .founder-section {
        padding: 40px 0;
    }

    .founder-container {
        gap: 30px;
    }

    .founder-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .founder-cards {
        gap: 20px;
    }

    .founder-card {
        padding: 20px 15px;
    }

    .founder-card-title {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .founder-card-list li {
        font-size: 13px;
        padding-left: 18px;
    }

    .development-section {
        padding: 40px 0;
    }

    .development-title {
        font-size: 22px;
    }

    .accordion-number {
        font-size: 16px;
        min-width: 30px;
    }

    .accordion-title {
        font-size: 14px;
    }

    .accordion-toggle {
        width: 36px;
        height: 36px;
    }

    .accordion-toggle svg {
        width: 16px;
        height: 16px;
    }

    .accordion-content p {
        font-size: 13px;
        padding-left: 45px;
    }

    .specialize-list {
        padding-left: 45px;
        gap: 10px;
    }

    .specialize-list li {
        font-size: 13px;
        gap: 10px;
    }

    .specialize-list .list-icon svg {
        width: 16px;
        height: 16px;
    }

    .team-section {
        padding: 40px 0;
    }

    .team-title {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .team-grid {
        gap: 15px;
    }

    .team-card-image {
        margin-bottom: 15px;
    }

    .team-card-name {
        font-size: 16px;
    }

    .team-card-role {
        font-size: 12px;
    }

    .team-card-linkedin svg {
        width: 24px;
        height: 24px;
    }
}

/* ===================================
   Contact Page Styles
   =================================== */

/* Contact Hero Section */
.contact-hero {
    display: flex;
    height: 443px;
    position: relative;
    margin-top: 120px;
}

.contact-hero-image {
    flex: 0 0 50%;
    position: relative;
    overflow: hidden;
}

.contact-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(167, 144, 97, 0.39);
    z-index: 1;
}

.contact-hero-image .breadcrumb {
    position: absolute;
    top: 128px;
    left: 76px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-primary);
    font-size: 20px;
    color: var(--color-white);
}

.contact-hero-image .breadcrumb a {
    color: var(--color-white);
    text-decoration: none;
}

.contact-hero-image .breadcrumb-arrow {
    width: 11px;
    height: 11px;
}

.contact-hero-content {
    flex: 0 0 50%;
    background-color: #51420f;
    padding: 128px 76px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 17px;
}

.contact-hero-title {
    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: 400;
    line-height: 59px;
    color: var(--color-white);
    margin: 0;
    letter-spacing: 0;
    text-align: center;
}

.contact-hero-text {
    font-family: var(--font-primary);
    font-size: 20px;
    line-height: 1.6;
    color: var(--color-white);
    margin: 0;
    max-width: 655px;
}

/* Contact Section */
.contact-section {
    background-color: #f0e6d7;
    padding: 100px 0;
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 926px;
    height: 100%;
    background-color: #d9d9d9;
    z-index: 0;
}

.contact-container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0;
    position: relative;
    z-index: 1;
}

.contact-content {
    display: grid;
    grid-template-columns: 571px 1fr;
    gap: 0;
    align-items: flex-start;
    padding-left: 76px;
    padding-right: 90px;
}

.contact-info {
    padding-top: 111px;
    padding-right: 0;
    background-color: transparent;
    z-index: 2;
}

.contact-section-title {
    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: 400;
    line-height: 59px;
    color: var(--color-text-brown);
    margin-bottom: 28px;
    letter-spacing: 0;
    text-transform: none;
}

.contact-info-block {
    margin-bottom: 28px;
}

.contact-info-label {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 500;
    color: #63584e;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0;
}

.contact-info-text {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 400;
    color: var(--color-text-brown);
    line-height: 1.6;
    margin-bottom: 16px;
}

.contact-info-address {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 400;
    color: var(--color-text-brown);
    line-height: 1.6;
}

.contact-info-name {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 500;
    color: var(--color-text-brown);
    margin-bottom: 16px;
}

.contact-link {
    color: var(--color-text-brown);
    text-decoration: underline;
    transition: var(--transition-fast);
}

.contact-link:hover {
    color: var(--color-gold);
}

/* Contact Form */
.contact-form-wrapper {
    background-color: #f0e6d7;
    padding: 111px 0 0 0;
    margin-left: 90px;
    z-index: 2;
}

.contact-form-title {
    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: 400;
    line-height: 59px;
    color: var(--color-text-brown);
    margin-bottom: 47px;
    letter-spacing: 0;
    text-transform: none;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 735px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 38.544px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 9.636px;
}

.form-label {
    font-family: 'DM Sans', var(--font-primary);
    font-size: 25.696px;
    font-weight: 500;
    color: #000000;
    letter-spacing: 0;
    text-transform: none;
    line-height: 32.12px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 22.484px 25.696px;
    border: 1.606px solid rgba(93, 80, 32, 0.2);
    background-color: rgba(255, 255, 255, 0.38);
    color: var(--color-text-dark);
    font-family: 'DM Sans', var(--font-primary);
    font-size: 25.696px;
    line-height: 32.12px;
    outline: none;
    transition: var(--transition-normal);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #adb5bd;
}

.form-input:focus,
.form-textarea:focus {
    border-color: rgba(93, 80, 32, 0.4);
    background-color: rgba(255, 255, 255, 0.5);
}

.form-textarea {
    resize: vertical;
    min-height: 214px;
    font-family: 'DM Sans', var(--font-primary);
}

.btn-submit {
    background-color: #a78f5c;
    color: var(--color-white);
    padding: 15px 16px;
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: var(--transition-normal);
    align-self: flex-start;
    margin-top: 0;
}

.btn-submit:hover {
    background-color: #8f7849;
}

/* Contact Hero Animations */
.contact-hero-image {
    opacity: 0;
    animation: aboutHeroImageAppear 1.2s ease-out 0.2s forwards;
}

.contact-hero-title {
    opacity: 0;
    transform: translateY(30px);
    animation: aboutHeroTextAppear 0.8s ease-out 0.6s forwards;
}

.contact-hero-text {
    opacity: 0;
    transform: translateY(30px);
    animation: aboutHeroTextAppear 0.8s ease-out 0.8s forwards;
}

/* Contact Section Animations */
.contact-section .contact-info,
.contact-section .contact-form-wrapper {
    opacity: 0;
    transform: translateY(30px);
}

.contact-section.in-view .contact-info {
    animation: aboutTextAppear 0.8s ease-out 0.2s forwards;
}

.contact-section.in-view .contact-form-wrapper {
    animation: aboutTextAppear 0.8s ease-out 0.4s forwards;
}

/* ===================================
   Contact Page Responsive - Tablet (1024px)
   =================================== */
@media (max-width: 1024px) {
    .contact-hero {
        height: auto;
        min-height: 400px;
        margin-top: 100px;
    }

    .contact-hero-image {
        height: 400px;
    }

    .contact-hero-image .breadcrumb {
        top: 40px;
        left: 40px;
        font-size: 16px;
    }

    .contact-hero-content {
        padding: 60px 50px;
    }

    .contact-hero-title {
        font-size: 38px;
        line-height: 48px;
    }

    .contact-hero-text {
        font-size: 18px;
    }

    .contact-section::before {
        width: 100%;
        max-width: 500px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        padding-left: 50px;
        padding-right: 50px;
        gap: 60px;
    }

    .contact-info {
        padding-top: 60px;
    }

    .contact-form-wrapper {
        padding-top: 0;
        margin-left: 0;
    }

    .contact-section-title,
    .contact-form-title {
        font-size: 38px;
        line-height: 48px;
    }

    .form-label {
        font-size: 20px;
    }

    .form-input,
    .form-textarea {
        font-size: 18px;
        padding: 18px 20px;
    }
}

/* ===================================
   Contact Page Responsive - Mobile (768px)
   =================================== */
@media (max-width: 768px) {
    .contact-hero {
        flex-direction: column;
        height: auto;
        min-height: auto;
        margin-top: 80px;
    }

    .contact-hero-image {
        flex: none;
        max-width: 100%;
        height: 200px;
    }

    .contact-hero-image .breadcrumb {
        top: 30px;
        left: 30px;
        font-size: 14px;
    }

    .contact-hero-content {
        padding: 50px 25px;
    }

    .contact-hero-title {
        font-size: 32px;
        line-height: 42px;
        margin-bottom: 20px;
    }

    .contact-hero-text {
        font-size: 16px;
    }

    .contact-section {
        padding: 60px 0;
    }

    .contact-section::before {
        display: none;
    }

    .contact-content {
        grid-template-columns: 1fr;
        padding-left: 30px;
        padding-right: 30px;
        gap: 50px;
    }

    .contact-info {
        padding-top: 0;
    }

    .contact-section-title {
        font-size: 32px;
        line-height: 42px;
        margin-bottom: 25px;
    }

    .contact-info-label {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .contact-info-text,
    .contact-info-address,
    .contact-info-name {
        font-size: 16px;
    }

    .contact-form-wrapper {
        padding-top: 0;
        margin-left: 0;
    }

    .contact-form-title {
        font-size: 32px;
        line-height: 42px;
        margin-bottom: 35px;
    }

    .contact-form {
        gap: 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .form-label {
        font-size: 18px;
    }

    .form-input,
    .form-textarea {
        padding: 15px 18px;
        font-size: 16px;
    }

    .form-textarea {
        min-height: 150px;
    }

    .btn-submit {
        width: 100%;
        padding: 15px;
        font-size: 18px;
    }
}

/* ===================================
   Contact Page Responsive - Small Mobile (480px)
   =================================== */
@media (max-width: 480px) {
    .contact-hero-image {
        height: 280px;
    }

    .contact-hero-image .breadcrumb {
        top: 20px;
        left: 20px;
        font-size: 12px;
    }

    .contact-hero-content {
        padding: 30px 20px;
    }

    .contact-hero-title {
        font-size: 26px;
        line-height: 34px;
    }

    .contact-hero-text {
        font-size: 14px;
    }

    .contact-section {
        padding: 40px 0;
    }

    .contact-content {
        padding-left: 20px;
        padding-right: 20px;
        gap: 40px;
    }

    .contact-section-title,
    .contact-form-title {
        font-size: 26px;
        line-height: 34px;
        margin-bottom: 20px;
    }

    .contact-info-label {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .contact-info-text,
    .contact-info-address,
    .contact-info-name {
        font-size: 14px;
    }

    .contact-form {
        gap: 20px;
    }

    .form-row {
        gap: 20px;
    }

    .form-label {
        font-size: 16px;
    }

    .form-input,
    .form-textarea {
        padding: 12px 15px;
        font-size: 14px;
    }

    .form-textarea {
        min-height: 120px;
    }

    .btn-submit {
        padding: 12px;
        font-size: 16px;
    }
}

/* ===================================
   Contact New Page Styles
   =================================== */

/* Hero Section for Contact New */
.contact-new-page .hero {
    position: relative;
    height: 443px;
    background-image: url('../images/contact-hero-bg.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    margin-top: 0;
}

.contact-new-page .hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(167, 144, 97, 0.39);
    z-index: 1;
}

.contact-new-page .hero-content {
    position: relative;
    z-index: 2;
    padding: 0 76px;
    max-width: 655px;
    color: var(--color-white);
}

.contact-new-page .breadcrumbs {
    font-size: 20px;
    margin-bottom: 17px;
    color: var(--color-white);
    font-family: var(--font-primary);
}

.contact-new-page .breadcrumbs a {
    color: var(--color-white);
    text-decoration: none;
}

.contact-new-page .breadcrumbs a:hover {
    text-decoration: underline;
}

.contact-new-page .breadcrumb-separator {
    display: inline-flex;
    align-items: center;
    margin: 0 10px;
}

.contact-new-page .hero h1 {
    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: 400;
    line-height: 59px;
    margin-bottom: 17px;
    letter-spacing: 1px;
    color: var(--color-white);
}

.contact-new-page .hero p {
    font-size: 20px;
    line-height: 1.6;
    color: var(--color-white);
    font-family: var(--font-primary);
}

/* Split Section */
.split-section {
    display: flex;
    min-height: 779px;
}

.split-content {
    flex: 1;
    display: flex;
    align-items: center;
}

.text-block {
    background-color: #fdf9f3;
    padding: 111px 76px;
}

.content-wrapper {
    max-width: 571px;
}

.text-block .section-title {
    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: 400;
    line-height: 59px;
    color: var(--color-text-brown);
    margin-bottom: 28px;
    letter-spacing: 1px;
}

.contact-group {
    margin-bottom: 28px;
}

.contact-group h3 {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 500;
    color: #63584e;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.contact-group p {
    font-family: var(--font-primary);
    font-size: 20px;
    color: var(--color-text-brown);
    line-height: 1.6;
    margin-bottom: 16px;
}

.contact-group p.highlight {
    font-weight: 500;
}

.contact-group a {
    color: var(--color-text-brown);
    text-decoration: underline;
    transition: var(--transition-fast);
}

.contact-group a:hover {
    color: var(--color-gold);
}

.bg-grey {
    background-color: #d9d9d9;
}

.bg-grey-dark {
    background-color: #d9d9d9;
}

.map-block {
    background-color: #d9d9d9;
    padding: 0;
    min-height: 779px;
}

.map-block iframe {
    width: 100%;
    height: 100%;
    min-height: 779px;
    display: block;
}

.form-block {
    background-color: #f0e6d7;
    padding: 111px 90px;
}

.form-block .content-wrapper {
    max-width: 735px;
}

.form-block .section-title {
    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: 400;
    line-height: 59px;
    color: var(--color-text-brown);
    margin-bottom: 47px;
    letter-spacing: 1px;
}

.form-block form {
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 100%;
}

.form-block .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 100%;
}

.form-block .form-group {
    display: flex;
    flex-direction: column;
    gap: 9.636px;
    width: 100%;
}

.form-block .form-group label {
    font-family: var(--font-primary);
    font-size: 25.696px;
    font-weight: 500;
    color: #000000;
    line-height: 32.12px;
}

.form-block .form-group input,
.form-block .form-group textarea {
    width: 100%;
    padding: 22.484px 25.696px;
    border: 1.606px solid rgba(93, 80, 32, 0.2);
    background-color: rgba(255, 255, 255, 0.6);
    font-family: var(--font-primary);
    font-size: 25.696px;
    line-height: 32.12px;
    color: var(--color-text-dark);
    outline: none;
    transition: var(--transition-normal);
    border-radius: 0;
    box-sizing: border-box;
}

.form-block .form-group input::placeholder,
.form-block .form-group textarea::placeholder {
    color: #adb5bd;
}

.form-block .form-group input:focus,
.form-block .form-group textarea:focus {
    border-color: rgba(93, 80, 32, 0.5);
    background-color: rgba(255, 255, 255, 0.8);
}

.form-block .form-group textarea {
    resize: vertical;
    min-height: 214px;
}

.form-block .btn-submit {
    background-color: #a78f5c;
    color: var(--color-white);
    padding: 15px 16px;
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: var(--transition-normal);
    align-self: flex-start;
    margin-top: 0;
}

.form-block .btn-submit:hover {
    background-color: #8f7849;
}

/* Compact Form - One Scroll Layout */
.form-block .compact-form {
    gap: 18px;
}

.form-block .compact-form .form-row {
    gap: 16px;
}

.form-block .compact-form .form-group {
    gap: 6px;
}

.form-block .compact-form .form-group label {
    font-size: 20px;
    line-height: 1.3;
}

.form-block .compact-form .form-group input,
.form-block .compact-form .form-group textarea {
    padding: 14px 18px;
    font-size: 16px;
}

.form-block .compact-form .form-group textarea {
    min-height: 100px;
}

.compact-form + .btn-submit,
.form-block .compact-form .btn-submit {
    margin-top: 8px;
}

/* Adjust split section for compact form */
.split-section:has(.compact-form) {
    min-height: auto;
}

/* Contact form image */
.contact-form-image {
    position: relative;
    overflow: hidden;
}

.contact-form-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
}

.compact-form-block {
    padding: 60px 50px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

.compact-form-block .content-wrapper {
    max-width: 100% !important;
    width: 100% !important;
}

.compact-form-block .section-title {
    font-size: 36px !important;
    line-height: 1.3 !important;
    margin-bottom: 24px !important;
}

/* Contact New Page Responsive */
@media (max-width: 1024px) {
    .contact-new-page .hero {
        height: auto;
        min-height: 400px;
        padding: 60px 30px;
    }

    .contact-new-page .hero-content {
        padding: 0 30px;
    }

    .split-section {
        flex-direction: column;
        min-height: auto;
    }

    .text-block {
        padding: 60px 30px;
    }

    .map-block {
        min-height: 400px;
        order: -1;
    }

    .map-block iframe {
        min-height: 400px;
    }

    .form-block {
        padding: 60px 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .form-block .form-group label {
        font-size: 20px;
    }

    .form-block .form-group input,
    .form-block .form-group textarea {
        font-size: 18px;
        padding: 18px 20px;
    }

    /* Compact form keeps 2-column layout on tablet */
    .form-block .compact-form .form-row {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .split-section:has(.compact-form) .form-block,
    .compact-form-block {
        padding: 50px 30px !important;
    }
}

@media (max-width: 768px) {
    .contact-new-page .hero {
        padding: 25px 20px;
        min-height: auto;
    }

    .contact-new-page .hero-content {
        padding: 0;
        max-width: 100%;
    }

    .contact-new-page .hero h1 {
        font-size: 32px;
        line-height: 40px;
        margin-bottom: 12px;
    }

    .contact-new-page .hero p {
        font-size: 14px;
        line-height: 1.6;
    }

    .contact-new-page .breadcrumbs {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .text-block {
        padding: 40px 20px;
    }

    .text-block .section-title,
    .form-block .section-title {
        font-size: 32px;
        line-height: 42px;
        margin-bottom: 24px;
    }

    .contact-group {
        margin-bottom: 20px;
    }

    .contact-group h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .contact-group p {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .form-block {
        padding: 40px 20px;
    }

    .form-block .content-wrapper {
        max-width: 100%;
        width: 100%;
    }

    .form-block form {
        gap: 24px;
    }

    .form-block .form-group {
        gap: 8px;
    }

    .form-block .form-group label {
        font-size: 18px;
        line-height: 1.4;
    }

    .form-block .form-group input,
    .form-block .form-group textarea {
        font-size: 16px;
        padding: 16px;
        width: 100%;
        box-sizing: border-box;
    }

    .form-block .form-group textarea {
        min-height: 150px;
    }

    .form-block .btn-submit {
        width: 100%;
        padding: 14px 20px;
        font-size: 16px;
    }

    /* Compact form on mobile - stack fields */
    .form-block .compact-form .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .form-block .compact-form {
        gap: 16px;
    }

    .form-block .compact-form .form-group textarea {
        min-height: 80px;
    }

    .split-section:has(.compact-form) .form-block,
    .compact-form-block {
        padding: 40px 25px !important;
    }

    .compact-form-block .form-group label {
        font-size: 16px !important;
    }
}

@media (max-width: 480px) {
    .contact-new-page .hero {
        padding: 20px 15px;
        min-height: auto;
    }

    .contact-new-page .hero h1 {
        font-size: 26px;
        line-height: 32px;
        margin-bottom: 10px;
    }

    .contact-new-page .hero p {
        font-size: 13px;
        line-height: 1.5;
    }

    .contact-new-page .breadcrumbs {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .text-block {
        padding: 30px 15px;
    }

    .text-block .section-title,
    .form-block .section-title {
        font-size: 26px;
        line-height: 34px;
    }

    .contact-group h3 {
        font-size: 16px;
    }

    .contact-group p {
        font-size: 14px;
    }

    .map-block {
        min-height: 300px;
    }

    .map-block iframe {
        min-height: 300px;
    }

    .form-block {
        padding: 30px 15px;
    }

    .form-block .content-wrapper {
        max-width: 100%;
        width: 100%;
    }

    .form-block form {
        gap: 20px;
    }

    .form-block .form-group {
        gap: 6px;
    }

    .form-block .form-group label {
        font-size: 16px;
        line-height: 1.3;
    }

    .form-block .form-group input,
    .form-block .form-group textarea {
        font-size: 14px;
        padding: 14px;
        width: 100%;
        box-sizing: border-box;
    }

    .form-block .form-group textarea {
        min-height: 120px;
    }

    .form-block .btn-submit {
        padding: 12px 18px;
        font-size: 14px;
    }

    /* Compact form on small mobile */
    .form-block .compact-form {
        gap: 14px;
    }

    .form-block .compact-form .form-group textarea {
        min-height: 70px;
    }

    .split-section:has(.compact-form) .form-block,
    .compact-form-block {
        padding: 30px 20px !important;
    }

    .split-section:has(.compact-form) .form-block .section-title,
    .compact-form-block .section-title {
        font-size: 24px !important;
        margin-bottom: 18px !important;
    }

    .compact-form-block .form-group label {
        font-size: 14px !important;
    }
}

/* ===================================
   Policy Pages (Privacy Policy & T&C)
   =================================== */

/* Policy Hero Section */
.policy-hero {
    position: relative;
    height: 300px;
    background-image: url('../images/contact-hero-bg.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.policy-hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(167, 144, 97, 0.39);
    z-index: 1;
}

.policy-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 76px;
    color: var(--color-white);
    text-align: center;
}

.policy-page .breadcrumbs {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--color-white);
    font-family: var(--font-primary);
}

.policy-page .breadcrumbs a {
    color: var(--color-white);
    text-decoration: none;
}

.policy-page .breadcrumbs a:hover {
    text-decoration: underline;
}

.policy-page .breadcrumb-separator {
    display: inline-flex;
    align-items: center;
    margin: 0 10px;
}

.policy-hero h1 {
    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: 400;
    line-height: 59px;
    letter-spacing: 1px;
    color: var(--color-white);
    margin: 0;
}

/* Policy Content Section */
.policy-content-section {
    background-color: #fdf9f3;
    padding: 80px 0;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
}

.policy-content .policy-intro {
    font-size: 20px;
    line-height: 1.7;
    color: var(--color-text-brown);
    margin-bottom: 30px;
    font-weight: 500;
}

.policy-content p {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.policy-content h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 400;
    color: var(--color-text-brown);
    margin-top: 50px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.policy-content h3 {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 600;
    color: var(--color-text-brown);
    margin-top: 30px;
    margin-bottom: 15px;
}

.policy-content ul {
    margin: 0 0 25px 0;
    padding-left: 25px;
}

.policy-content ul li {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 10px;
}

.policy-content a {
    color: var(--color-text-brown);
    text-decoration: underline;
    transition: var(--transition-fast);
}

.policy-content a:hover {
    color: var(--color-gold);
}

.policy-content .contact-email {
    font-size: 18px;
    margin: 15px 0;
}

.policy-content .contact-email a {
    font-weight: 500;
}

.policy-content .highlight-text {
    background-color: rgba(167, 143, 92, 0.1);
    padding: 15px 20px;
    border-left: 4px solid var(--color-gold);
    margin: 25px 0;
}

.policy-content .contact-info-block {
    background-color: rgba(167, 143, 92, 0.1);
    padding: 25px 30px;
    margin-top: 20px;
}

.policy-content .contact-info-block p {
    margin-bottom: 10px;
}

.policy-content .contact-info-block p:last-child {
    margin-bottom: 0;
}

/* Policy Page Responsive */
@media (max-width: 1024px) {
    .policy-hero {
        height: 250px;
    }

    .policy-hero-content {
        padding: 0 50px;
    }

    .policy-content-section {
        padding: 60px 0;
    }

    .policy-content {
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    .policy-hero {
        height: 220px;
    }

    .policy-hero-content {
        padding: 0 20px;
    }

    .policy-hero h1 {
        font-size: 32px;
        line-height: 42px;
    }

    .policy-page .breadcrumbs {
        font-size: 14px;
    }

    .policy-content-section {
        padding: 40px 0;
    }

    .policy-content {
        padding: 0 20px;
    }

    .policy-content .policy-intro {
        font-size: 17px;
    }

    .policy-content h2 {
        font-size: 24px;
        margin-top: 40px;
    }

    .policy-content h3 {
        font-size: 18px;
    }

    .policy-content p,
    .policy-content ul li {
        font-size: 15px;
    }

    .policy-content .highlight-text {
        padding: 12px 15px;
    }

    .policy-content .contact-info-block {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .policy-hero {
        height: 200px;
    }

    .policy-hero-content {
        padding: 0 15px;
    }

    .policy-hero h1 {
        font-size: 26px;
        line-height: 34px;
    }

    .policy-page .breadcrumbs {
        font-size: 13px;
    }

    .policy-content-section {
        padding: 30px 0;
    }

    .policy-content {
        padding: 0 15px;
    }

    .policy-content .policy-intro {
        font-size: 16px;
    }

    .policy-content h2 {
        font-size: 22px;
        margin-top: 35px;
    }

    .policy-content h3 {
        font-size: 17px;
    }

    .policy-content p,
    .policy-content ul li {
        font-size: 14px;
        line-height: 1.7;
    }
}

/* ===================================
   Floating WhatsApp Button
   =================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    background-color: #20BA5A;
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

/* Responsive WhatsApp Button */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 56px;
        height: 56px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }

    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }
}

/* ===================================
   Consultation Modal
   =================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background-color: #f0e6d7;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 8px;
    position: relative;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-container {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    cursor: pointer;
    color: #5c4f20;
    padding: 8px;
    z-index: 10;
    transition: color 0.2s ease;
}

.modal-close:hover {
    color: #000;
}

.modal-content {
    padding: 50px;
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 400;
    color: var(--color-text-brown);
    margin-bottom: 30px;
    text-transform: uppercase;
}

/* Consultation Form Styles */
.consultation-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.consultation-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.consultation-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.consultation-form .form-group label {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 500;
    color: #000000;
    line-height: 1.4;
}

.consultation-form .form-group input,
.consultation-form .form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid rgba(93, 80, 32, 0.2);
    background-color: rgba(255, 255, 255, 0.6);
    font-family: var(--font-primary);
    font-size: 16px;
    color: #000;
    transition: border-color 0.2s ease, background-color 0.2s ease;
    box-sizing: border-box;
}

.consultation-form .form-group input::placeholder,
.consultation-form .form-group textarea::placeholder {
    color: #adb5bd;
}

.consultation-form .form-group input:focus,
.consultation-form .form-group textarea:focus {
    outline: none;
    border-color: rgba(93, 80, 32, 0.5);
    background-color: rgba(255, 255, 255, 0.8);
}

.consultation-form .form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.consultation-form .btn-submit {
    background-color: #a78f5c;
    color: var(--color-white);
    padding: 15px 30px;
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
    align-self: flex-start;
    margin-top: 10px;
}

.consultation-form .btn-submit:hover {
    background-color: #8f7849;
}

/* Modal Responsive */
@media (max-width: 768px) {
    .modal-content {
        padding: 40px 25px;
    }

    .modal-title {
        font-size: 28px;
        margin-bottom: 24px;
    }

    .consultation-form {
        gap: 16px;
    }

    .consultation-form .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .consultation-form .form-group label {
        font-size: 16px;
    }

    .consultation-form .form-group input,
    .consultation-form .form-group textarea {
        padding: 12px 14px;
        font-size: 15px;
    }

    .consultation-form .btn-submit {
        width: 100%;
        padding: 14px 20px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .modal-container {
        width: 95%;
        max-height: 95vh;
    }

    .modal-content {
        padding: 30px 20px;
    }

    .modal-close {
        top: 15px;
        right: 15px;
    }

    .modal-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .consultation-form .form-group label {
        font-size: 14px;
    }

    .consultation-form .form-group input,
    .consultation-form .form-group textarea {
        padding: 12px;
        font-size: 14px;
    }

    .consultation-form .form-group textarea {
        min-height: 80px;
    }

    .consultation-form .btn-submit {
        padding: 12px 18px;
        font-size: 14px;
    }
}

/* Thank You Modal */
.thank-you-container {
    max-width: 500px;
    text-align: center;
}

.thank-you-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 50px;
}

.thank-you-icon {
    margin-bottom: 30px;
}

.thank-you-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 400;
    color: var(--color-text-brown);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.thank-you-message {
    font-family: var(--font-primary);
    font-size: 18px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 30px;
}

.thank-you-content .btn {
    min-width: 150px;
}

@media (max-width: 480px) {
    .thank-you-content {
        padding: 40px 25px;
    }

    .thank-you-icon svg {
        width: 60px;
        height: 60px;
    }

    .thank-you-title {
        font-size: 32px;
    }

    .thank-you-message {
        font-size: 16px;
    }
}
