/* ====================================
   RESPONSIVE TYPOGRAPHY VARIABLES
   ==================================== */
:root {
    /* Responsive typography sizes */
    --h1-size-xl: 4.5rem;
    --h1-size-lg: 3.5rem;
    --h1-size-md: 2.5rem;
    --h1-size-sm: 2rem;
    --h1-size-xs: 1.8rem;
    
    --h2-size-xl: 3.5rem;
    --h2-size-lg: 2.8rem;
    --h2-size-md: 2rem;
    --h2-size-sm: 1.75rem;
    --h2-size-xs: 1.5rem;
    
    --h3-size-xl: 2.5rem;
    --h3-size-lg: 2rem;
    --h3-size-md: 1.5rem;
    --h3-size-sm: 1.25rem;
    --h3-size-xs: 1.1rem;
    
    --body-size-xl: 1.2rem;
    --body-size-lg: 1.1rem;
    --body-size-md: 1rem;
    --body-size-sm: 0.9rem;
    --body-size-xs: 0.85rem;
    
    /* Navbar and UI Colors */
    --black: #000000;
    --white: #ffffff;
    --primary-pink: #7A5096;
    --secondary-pink: #9B6BB8;
    --dark-gray: #333333;
    --text-gray: #666666;
    --light-gray: #f5f5f5;
    --primary-purple: #7A5096;
    
    /* Spacing */
    --spacing-sm: 10px;
    --spacing-md: 20px;
    --spacing-lg: 30px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ====================================
   HEADER & NAVIGATION
   ==================================== */
#header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 10000;
    background-color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-bottom: none;
}

#header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

.logo {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

.logo img {
    height: 65px;
    width: auto;
    border: none;
    box-shadow: none;
    transition: transform 0.3s ease;
    margin: 0;
    padding: 0;
    display: block;
}

.logo img:hover {
    transform: scale(1.05);
}

.logo a {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    text-decoration: none;
}

.desktop-nav ul {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.desktop-nav a {
    color: var(--black);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 0.8rem 1rem;
    position: relative;
    transition: all 0.3s ease;
    margin: 0 2px;
    text-decoration: none;
}

.desktop-nav a:hover {
    color: var(--black);
    background-color: rgba(0, 0, 0, 0.05);
}

/* Dropdown Menu */
.has-dropdown {
    position: relative;
}

.has-dropdown .fa-chevron-down {
    font-size: 0.7rem;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.has-dropdown:hover .fa-chevron-down {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: var(--white);
    min-width: 180px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
    border-top: 3px solid var(--dark-gray);
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--black);
    text-align: center;
    transition: all 0.2s ease;
    text-decoration: none;
}

.dropdown-menu a:hover {
    background-color: rgba(0, 0, 0, 0.1);
    color: var(--black);
}

.dropdown-menu a::before,
.dropdown-menu a::after {
    display: none;
}

/* ====================================
   RESPONSIVE TYPOGRAPHY VARIABLES
   ==================================== */
:root {
    /* Responsive typography sizes */
    --h1-size-xl: 4.5rem;
    --h1-size-lg: 3.5rem;
    --h1-size-md: 2.5rem;
    --h1-size-sm: 2rem;
    --h1-size-xs: 1.8rem;
    
    --h2-size-xl: 3.5rem;
    --h2-size-lg: 2.8rem;
    --h2-size-md: 2rem;
    --h2-size-sm: 1.75rem;
    --h2-size-xs: 1.5rem;
    
    --h3-size-xl: 2.5rem;
    --h3-size-lg: 2rem;
    --h3-size-md: 1.5rem;
    --h3-size-sm: 1.25rem;
    --h3-size-xs: 1.1rem;
    
    --body-size-xl: 1.2rem;
    --body-size-lg: 1.1rem;
    --body-size-md: 1rem;
    --body-size-sm: 0.9rem;
    --body-size-xs: 0.85rem;
    
    /* Navbar and UI Colors */
    --black: #000000;
    --white: #ffffff;
    --primary-pink: #7A5096;
    --secondary-pink: #9B6BB8;
    --dark-gray: #333333;
    --text-gray: #666666;
    --light-gray: #f5f5f5;
    --primary-purple: #7A5096;
    
    /* Spacing */
    --spacing-sm: 10px;
    --spacing-md: 20px;
    --spacing-lg: 30px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ====================================
   HEADER & NAVIGATION
   ==================================== */
#header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 10000;
    background-color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-bottom: none;
}

#header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

.logo {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

.logo img {
    height: 65px;
    width: auto;
    border: none;
    box-shadow: none;
    transition: transform 0.3s ease;
    margin: 0;
    padding: 0;
    display: block;
}

.logo img:hover {
    transform: scale(1.05);
}

.logo a {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    text-decoration: none;
}

.desktop-nav ul {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.desktop-nav a {
    color: var(--black);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 0.8rem 1rem;
    position: relative;
    transition: all 0.3s ease;
    margin: 0 2px;
    text-decoration: none;
}

.desktop-nav a:hover {
    color: var(--black);
    background-color: rgba(0, 0, 0, 0.05);
}

/* Dropdown Menu */
.has-dropdown {
    position: relative;
}

.has-dropdown .fa-chevron-down {
    font-size: 0.7rem;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.has-dropdown:hover .fa-chevron-down {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: var(--white);
    min-width: 180px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
    border-top: 3px solid var(--dark-gray);
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--black);
    text-align: center;
    transition: all 0.2s ease;
    text-decoration: none;
}

.dropdown-menu a:hover {
    background-color: rgba(0, 0, 0, 0.1);
    color: var(--black);
}

.dropdown-menu a::before,
.dropdown-menu a::after {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--black);
}

/* ====================================
   MOBILE SIDEBAR NAVIGATION
   ==================================== */
.mobile-nav {
    display: block !important;
    position: fixed !important;
    top: 90px !important;
    left: 0 !important;
    width: 38% !important;
    height: calc(100vh - 90px) !important;
    background: linear-gradient(180deg, #7A5096 0%, #9B6BB8 50%, #6B4C93 100%) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25) !important;
    z-index: 9999 !important;
    transform: translateY(-100vh) !important;
    transition: transform 0.3s ease !important;
    overflow-y: auto !important;
    padding: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.mobile-nav.active {
    transform: translateY(0) !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.mobile-nav-container {
    padding: 30px 20px !important;
    display: flex !important;
    flex-direction: column !important;
}

.mobile-nav ul {
    padding: 0 !important;
    margin: 0 !important;
    list-style: none !important;
}

.mobile-nav li {
    margin: 0 0 15px !important;
    opacity: 1 !important;
    transform: none !important;
    transition: all 0.3s ease !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding-bottom: 15px !important;
}

.mobile-nav li:last-child {
    border-bottom: none !important;
    margin-bottom: 0 !important;
}

.mobile-nav a {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    color: white !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 1.2rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    padding: 15px 20px !important;
    border-radius: 25px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    text-decoration: none !important;
}

.mobile-nav a:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    transform: translateX(5px) !important;
}

.mobile-nav a.active {
    background: rgba(255, 255, 255, 0.2) !important;
    border-left: 4px solid white !important;
}

.mobile-nav .dropdown-menu {
    position: static !important;
    background: transparent !important;
    border: none !important;
    border-left: 2px solid rgba(255, 255, 255, 0.3) !important;
    margin: 5px 0 5px 20px !important;
    padding: 0 !important;
    max-height: 0 !important;
    overflow: hidden !important;
    transition: max-height 0.5s ease !important;
    opacity: 1 !important;
    visibility: visible !important;
    box-shadow: none !important;
    transform: none !important;
}

.mobile-nav .has-dropdown.active .dropdown-menu {
    max-height: 300px !important;
}

.mobile-nav .dropdown-menu a {
    font-size: 0.9rem !important;
    padding: 10px 15px !important;
    background: rgba(255, 255, 255, 0.03) !important;
    margin-bottom: 5px !important;
    border-radius: 8px !important;
    color: rgba(255, 255, 255, 0.9) !important;
}

.mobile-nav .dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    color: white !important;
}

.mobile-nav-social {
    margin-bottom: 40px !important;
    text-align: center !important;
}

.mobile-nav-social h4 {
    color: #E6D7FF !important;
    font-size: 0.9rem !important;
    margin-bottom: 15px !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}

.mobile-nav-social-icons {
    display: flex !important;
    justify-content: center !important;
    gap: 15px !important;
}

.mobile-nav-social-icons a {
    width: 45px !important;
    height: 45px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.1) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: white !important;
    font-size: 1.2rem !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
}

.mobile-nav-social-icons a:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    transform: scale(1.1) !important;
}





.mobile-nav-contact {
    margin-top: auto !important;
    text-align: center !important;
    color: rgba(255, 255, 255, 0.8) !important;
}

.mobile-nav-contact h4 {
    color: #E6D7FF !important;
    font-size: 0.9rem !important;
    margin-bottom: 15px !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}

.mobile-nav-contact p {
    margin: 8px 0 !important;
    font-size: 0.85rem !important;
    line-height: 1.4 !important;
}

.mobile-nav-contact a {
    color: white !important;
    text-decoration: none !important;
    font-weight: 500 !important;
}

.mobile-nav-contact a:hover {
    color: #E6D7FF !important;
    text-decoration: none !important;
}

/* Mobile menu toggle button */
#header .container {
    position: relative !important;
}

.mobile-menu-toggle {
    display: none !important;
    cursor: pointer !important;
    width: 40px !important;
    height: 40px !important;
    position: absolute !important;
    right: 20px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 10000 !important;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    outline: none !important;
    transition: all 0.3s ease !important;
    border-radius: 8px !important;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        right: 15px !important;
    }
}

.mobile-menu-toggle i {
    font-size: 1.8rem !important;
    color: var(--primary-pink) !important;
    transition: all 0.3s ease !important;
}

.mobile-menu-toggle:hover i {
    transform: scale(1.1) !important;
}

/* Toggle button active state */
.mobile-menu-toggle.active i.fa-bars {
    display: none !important;
}

.mobile-menu-toggle:not(.active) i.fa-times {
    display: none !important;
}

/* Add both icons to the toggle button */
.mobile-menu-toggle i.fa-bars,
.mobile-menu-toggle i.fa-times {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    transition: all 0.3s ease !important;
}

.mobile-menu-toggle.active i.fa-times {
    transform: translate(-50%, -50%) rotate(180deg) !important;
    color: var(--primary-pink) !important;
}



/* Toggle button active state */
.mobile-menu-toggle.active i.fa-bars {
    display: none !important;
}

.mobile-menu-toggle:not(.active) i.fa-times {
    display: none !important;
}

/* Add both icons to the toggle button */
.mobile-menu-toggle i.fa-bars,
.mobile-menu-toggle i.fa-times {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    transition: all 0.3s ease !important;
}

.mobile-menu-toggle.active i.fa-times {
    transform: translate(-50%, -50%) rotate(180deg) !important;
    color: var(--primary-pink) !important;
}

/* Focus states for accessibility */
.mobile-menu-toggle:focus {
    outline: 2px solid rgba(255, 140, 0, 0.5) !important;
    outline-offset: 2px !important;
}

.mobile-menu-toggle:focus:not(:focus-visible) {
    outline: none !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .desktop-nav {
        display: none !important;
    }
    
    .mobile-nav {
        display: block !important;
        width: 55% !important;
    }
}

@media (max-width: 480px) {
    .mobile-nav {
        width: 65% !important;
    }
    
    .mobile-nav a {
        font-size: 1.1rem !important;
        padding: 12px 15px !important;
    }
    
    .mobile-nav .dropdown-menu a {
        font-size: 0.9rem !important;
        padding: 10px 15px !important;
    }
    
    .mobile-menu-toggle {
        right: 10px !important;
    }
}

@media (max-width: 360px) {
    .mobile-menu-toggle {
        right: 8px !important;
    }
}

/* Ensure mobile nav is hidden on desktop */
@media (min-width: 769px) {
    .mobile-nav {
        display: none !important;
    }
}

/* Header animations */
#header.scrolled {
    background-color: rgba(255, 255, 255, 0.97);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

#header.header-hidden {
    transform: translateY(-100%);
}

#header.header-visible {
    transform: translateY(0);
    animation: slide-down 0.3s ease-in-out;
}

@keyframes slide-down {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

/* ====================================
   LOADING SCREEN
   ==================================== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 99999; /* Highest z-index to ensure it's above everything */
    transition: opacity 0.8s ease, visibility 0.8s ease;
    opacity: 1;
    visibility: visible;
    overflow: hidden;
}

.loading-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(228, 72, 126, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(243, 156, 18, 0.03) 0%, transparent 50%);
    animation: background-shift 8s ease-in-out infinite;
}

@keyframes background-shift {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    50% {
        transform: scale(1.1) rotate(1deg);
    }
}

/* Floating particles */
.loading-screen::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(228, 72, 126, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(243, 156, 18, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(228, 72, 126, 0.2), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(243, 156, 18, 0.2), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(228, 72, 126, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: particle-float 20s linear infinite;
    opacity: 0.6;
}

@keyframes particle-float {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-100px);
    }
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loading-screen.removed {
    display: none !important;
}

/* Hide main content during loading */
body.loading {
    overflow: hidden;
}

body.loading #main-content,
body.loading main,
body.loading .hero,
body.loading .key-services,
body.loading .about,
body.loading .contact,
body.loading footer {
    display: none !important;
}

/* Ensure main content is visible after loading */
body:not(.loading) #main-content,
body:not(.loading) main,
body:not(.loading) .hero,
body:not(.loading) .key-services,
body:not(.loading) .about,
body:not(.loading) .contact,
body:not(.loading) footer {
    display: block !important;
}



.loader {
    position: relative;
    width: 120px;
    height: 120px;
    margin-bottom: 40px;
}

.loader-circle {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7A5096, #9B6BB8);
    animation: loader-bounce 1.4s ease-in-out infinite both;
}

.loader-circle.circle-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: -0.32s;
}

.loader-circle.circle-2 {
    top: 20px;
    right: 20px;
    animation-delay: -0.16s;
}

.loader-circle.circle-3 {
    bottom: 20px;
    right: 20px;
    animation-delay: 0s;
}

.loader-circle.circle-4 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: -0.48s;
}

.loader-circle.circle-5 {
    bottom: 20px;
    left: 20px;
    animation-delay: -0.32s;
}

@keyframes loader-bounce {
    0%, 80%, 100% {
        transform: scale(0);
        opacity: 0.5;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

.loader-logo {
    animation: logo-float 2s ease-in-out infinite;
    position: relative;
    margin-bottom: 30px;
}

.loader-logo img {
    height: 70px;
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(228, 72, 126, 0.3));
}

.loader-logo::before, 
.loader-logo::after {
    content: '';
    position: absolute;
    width: 180px;
    height: 3px;
    background: linear-gradient(to right, transparent, #7A5096, #9B6BB8, transparent);
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.loader-logo::before {
    top: -25px;
    animation: line-glow 2s ease-in-out infinite;
}

.loader-logo::after {
    bottom: -25px;
    animation: line-glow 2s ease-in-out infinite reverse;
}

.loading-text {
    font-family: var(--heading-font);
    color: #2c3e50;
    margin-top: 25px;
    letter-spacing: 1.5px;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
    max-width: 400px;
    line-height: 1.6;
    animation: text-fade-in 2s ease-in-out infinite;
    background: linear-gradient(135deg, #7A5096, #9B6BB8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes text-fade-in {
    0%, 100% {
        opacity: 0.7;
        transform: translateY(5px);
    }
    50% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes logo-float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes line-glow {
    0%, 100% {
        opacity: 0.6;
        transform: translateX(-50%) scaleX(0.8);
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) scaleX(1);
    }
}



/* Loading screen animation states */
.loading-screen.removed {
    display: none !important;
    animation: none !important;
}

.loading-screen.removed .loader-circle,
.loading-screen.removed .loader-logo,
.loading-screen.removed .loading-text {
    animation: none !important;
}

/* Additional loading screen fixes */
body.loading .loading-screen {
    z-index: 99999 !important;
    display: flex !important;
}

body:not(.loading) .loading-screen.hidden,
body:not(.loading) .loading-screen.removed {
    z-index: -1 !important;
}

/* Force hide all content during loading */
body.loading *:not(.loading-screen):not(.loading-screen *) {
    visibility: hidden !important;
}

/* Ensure loading screen is always on top during loading */
body.loading .loading-screen {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-color: #ffffff !important;
    z-index: 99999 !important;
}







/* ====================================
   ROOT VARIABLES AND RESET
   ==================================== */
:root {
    /* Main Colors - Neutral scheme (page-specific colors will override) */
    --primary-color: #666666;
    --secondary-color: #888888;
    --accent-color: #aaaaaa;
    --light-color: #f5f5f5;
    
    /* Neutral Colors */
    --white: #FFFFFF;
    --off-white: #F9F9F9;
    --light-gray: #EEEEEE;
    --medium-gray: #CCCCCC;
    --dark-gray: #666666;
    --black: #000000;
    --text-dark: #333333;
    --text-gray: #6c757d;
    
    /* Typography */
    --heading-font: 'Montserrat', sans-serif;
    --body-font: 'Open Sans', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;
    --spacing-xxl: 7rem;
    
    /* Border Radius - Square edges */
    --radius-sm: 0;
    --radius-md: 0;
    --radius-lg: 0;
    --radius-xl: 0;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Container Widths */
    --container-max-width: 1200px;
    --container-padding: 1.5rem;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    color: var(--black);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: var(--spacing-sm);
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: var(--spacing-md);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--secondary-pink);
}

img {
    max-width: 100%;
    height: auto;
}

ul, ol {
    list-style-type: none;
}

/* Highlight styles moved to page-specific CSS files to avoid conflicts */

.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.section-header h2 {
    position: relative;
    display: inline-block;
    margin-bottom: var(--spacing-sm);
}

/* Highlight styles moved to page-specific CSS files to avoid conflicts */

.section-header p {
    max-width: 700px;
    margin: 0 auto;
    color: var(--dark-gray);
}

/* ====================================
   BUTTONS
   ==================================== */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    text-transform: uppercase;
    border: none;
    border-radius: 0; /* Completely squared */
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(102, 102, 102, 0.3);
    border-color: var(--primary-color);
}

.btn-secondary {
    background-color: transparent;  
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(102, 102, 102, 0.3);
}



/* ====================================
   FOOTER - IMPROVED DESIGN
   ==================================== */
#footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

#footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ff6b35' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 1;
}

.footer-main {
    padding: 30px 0 25px;
    position: relative;
    z-index: 2;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 20px;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Footer Brand Section */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-tagline {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-pink);
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
}

.footer-description {
    font-size: 0.85rem;
    line-height: 1.5;
    color: #cccccc;
    margin: 0;
    max-width: 350px;
    font-family: 'Georgia', serif;
}

.footer-social h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-icons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.social-link i {
    font-size: 0.9rem;
    z-index: 1;
    position: relative;
}

/* Social Media Specific Colors */
.social-link.linkedin:hover {
    background: #0077b5;
    color: #ffffff;
}

.social-link.twitter:hover {
    background: #1da1f2;
    color: #ffffff;
}

.social-link.facebook:hover {
    background: #1877f2;
    color: #ffffff;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #ffffff;
}

.social-link.youtube:hover {
    background: #ff0000;
    color: #ffffff;
}

/* Footer Links Sections */
.footer-links h3,
.footer-services h3,
.footer-contact h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.footer-links h3::after,
.footer-services h3::after,
.footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 35px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-pink), var(--secondary-pink));
    border-radius: 2px;
}

.footer-links ul,
.footer-services ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-services li {
    margin-bottom: 8px;
}

.footer-links a,
.footer-services a {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    font-family: 'Georgia', serif;
    position: relative;
    padding-left: 0;
}

.footer-links a:hover,
.footer-services a:hover {
    color: #7A5096;
    transition: color 0.3s ease;
}

/* Footer Contact Section */
.footer-contact .contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-contact .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact .contact-icon {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--primary-pink), var(--secondary-pink));
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-contact .contact-icon i {
    font-size: 0.8rem;
    color: #ffffff;
}

.footer-contact .contact-details h4 {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-pink);
    margin: 0 0 3px 0;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-contact .contact-details p {
    font-size: 0.8rem;
    color: #cccccc;
    margin: 0;
    line-height: 1.3;
    font-family: 'Georgia', serif;
}

/* Newsletter Section */
.newsletter h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.newsletter p {
    font-size: 0.8rem;
    color: #cccccc;
    margin-bottom: 12px;
    line-height: 1.4;
    font-family: 'Georgia', serif;
}

.newsletter-form .input-group {
    display: flex;
    gap: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-form input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    background: transparent;
    color: #ffffff;
    font-size: 0.8rem;
    outline: none;
    font-family: 'Georgia', serif;
}

.newsletter-form input::placeholder {
    color: #cccccc;
}

.newsletter-btn {
    background: linear-gradient(135deg, var(--primary-pink), var(--secondary-pink));
    border: none;
    padding: 10px 15px;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.8rem;
}

.newsletter-btn:hover {
    background: linear-gradient(135deg, var(--secondary-pink), var(--primary-pink));
    transform: scale(1.05);
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 15px 0;
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.copyright p {
    margin: 0;
    color: #cccccc;
    font-size: 0.8rem;
    font-family: 'Georgia', serif;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s ease;
    font-family: 'Georgia', serif;
}

.footer-bottom-links a:hover {
    color: #7A5096;
}

.footer-bottom-links .separator {
    color: #666666;
    font-size: 0.7rem;
}

/* Responsive Design for Footer */
@media (max-width: 1200px) {
    .footer-content {
        gap: 35px;
    }
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
        align-items: center;
    }
    
    .footer-description {
        max-width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .footer-main {
        padding: 40px 0 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }
    
    .footer-links ul,
    .footer-services ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-contact .contact-item {
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .footer-main {
        padding: 35px 0 25px;
    }
    
    .footer-content {
        gap: 30px;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
    }
    
    .newsletter-form .input-group {
        flex-direction: column;
        border-radius: 15px;
    }
    
    .newsletter-form input,
    .newsletter-btn {
        border-radius: 0;
    }
    
    .newsletter-form input {
        border-radius: 15px 15px 0 0;
    }
    
    .newsletter-btn {
        border-radius: 0 0 15px 15px;
    }
}

/* ====================================
   RESPONSIVE DESIGN
   ==================================== */
@media (max-width: 1024px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
}



@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    h3 {
        font-size: 1.25rem;
    }
    
    .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* ====================================
   ACCESSIBILITY AND FOCUS MANAGEMENT
   ==================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

@media (prefers-contrast: high) {
    .btn {
        border: 2px solid #000 !important;
    }
}

/* Focus visible for keyboard navigation */
.btn:focus-visible {
    outline: 3px solid var(--primary-pink) !important;
    outline-offset: 2px !important;
}



/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .btn {
        min-height: 44px;
        min-width: 44px;
    }
}







@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ====================================
   PRODUCT PAGES - COMPLETE STYLES
   ==================================== */

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-card {
    background: linear-gradient(135deg, var(--white) 0%, #fefefe 100%);
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(228, 72, 126, 0.1);
    border: 2px solid transparent;
    transform: translateY(0);
    will-change: transform, box-shadow, border-color;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-pink), var(--secondary-pink));
    transform: scaleX(0);
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(228, 72, 126, 0.25);
    border-color: var(--primary-pink);
    background: linear-gradient(135deg, #ffffff 0%, #fefefe 100%);
}

.benefit-card:hover h3 {
    color: var(--primary-pink);
}

.benefit-icon {
    font-size: 3rem;
    color: var(--primary-pink);
    margin-bottom: 20px;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 1 !important;
    z-index: 2;
    position: relative;
    transform: scale(1) rotate(0deg);
}

.benefit-card h3 {
    color: var(--black);
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 600;
    transition: color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.benefit-card p {
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 0;
    font-size: 0.95rem;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.15) rotate(3deg);
    color: var(--secondary-pink);
    opacity: 1 !important;
}

/* Product Hero Section */
.product-hero {
    padding: 120px 0 80px;
    margin-top: 80px;
    background: linear-gradient(135deg, rgba(228, 72, 126, 0.1) 0%, rgba(0, 150, 136, 0.1) 100%);
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

/* Video Background */
.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 1;
    visibility: visible;
    min-height: 600px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(255, 107, 53, 0.4) 0%, 
        rgba(255, 182, 193, 0.4) 100%);
    z-index: 2;
}

.product-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 3;
    width: 100%;
}

.product-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
    line-height: 1.2;
}

/* Highlight styles moved to page-specific CSS files to avoid conflicts */

.product-hero-content p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 30px;
    line-height: 1.6;
}

.product-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 1.15rem;
    color: var(--primary-color);
    font-weight: 600;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    border: 1px solid rgba(102, 102, 102, 0.3);
    transition: all 0.3s ease;
    animation: slideInRight 0.8s ease-out both;
    opacity: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.feature:nth-child(1) { animation-delay: 0.4s; }
.feature:nth-child(2) { animation-delay: 0.6s; }
.feature:nth-child(3) { animation-delay: 0.8s; }

.feature:hover {
    background: rgba(102, 102, 102, 0.1);
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(102, 102, 102, 0.2);
    border-color: rgba(102, 102, 102, 0.6);
}

.feature i {
    color: var(--primary-color);
    font-size: 1.4rem;
    filter: drop-shadow(0 2px 4px rgba(102, 102, 102, 0.4));
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Product Overview Section */
.product-overview {
    padding: 80px 0;
    background: var(--white);
}

/* Product Categories Section */
.product-categories {
    padding: 80px 0;
    background: var(--light-gray);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.category-item {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.category-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary-pink);
    box-shadow: 0 20px 40px rgba(228, 72, 126, 0.2);
}

.corner-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 30px 30px 0;
    border-color: transparent var(--primary-pink) transparent transparent;
}

.category-icon {
    font-size: 3rem;
    color: var(--primary-pink);
    margin-bottom: 20px;
}

.category-item h3 {
    font-size: 1.5rem;
    color: var(--black);
    margin-bottom: 15px;
    font-weight: 600;
}

.category-item p {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.category-item ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.category-item li {
    padding: 8px 0;
    color: var(--dark-gray);
    position: relative;
    padding-left: 20px;
}

.category-item li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-pink);
    font-weight: bold;
}

/* Manufacturing Process Section */
.manufacturing-process {
    padding: 80px 0;
    background: var(--white);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.step {
    text-align: center;
    padding: 30px 20px;
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-pink), var(--secondary-pink));
    color: var(--white);
    border-radius: 50%;
    line-height: 60px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.step-content h3 {
    font-size: 1.3rem;
    color: var(--black);
    margin-bottom: 15px;
    font-weight: 600;
}

.step-content p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Specifications Section */
.specifications {
    padding: 80px 0;
    background: var(--light-gray);
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.spec-item {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.spec-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(228, 72, 126, 0.2);
    border-color: var(--primary-pink);
    background: linear-gradient(135deg, var(--white) 0%, #fefefe 100%);
}

.corner-decoration {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--primary-pink);
    opacity: 0.1;
    transition: all 0.3s ease;
}

.spec-item:hover .corner-decoration {
    opacity: 0.3;
    background: var(--secondary-pink);
}

.corner-decoration.top-left {
    top: 0;
    left: 0;
    border-radius: 0 0 20px 0;
}

.corner-decoration.top-right {
    top: 0;
    right: 0;
    border-radius: 0 0 0 20px;
}

.corner-decoration.bottom-left {
    bottom: 0;
    left: 0;
    border-radius: 0 20px 0 0;
}

.corner-decoration.bottom-right {
    bottom: 0;
    right: 0;
    border-radius: 20px 0 0 0;
}

.spec-item h4 {
    font-size: 1.3rem;
    color: var(--black);
    margin-bottom: 15px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.spec-item p {
    color: var(--text-gray);
    line-height: 1.6;
    transition: color 0.3s ease;
}

.spec-item:hover h4 {
    color: var(--primary-pink);
}

.spec-item:hover p {
    color: var(--dark-gray);
}

/* Call to Action Section */
.product-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-pink), var(--secondary-pink));
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-buttons .btn-primary {
    background: var(--white);
    color: var(--primary-pink);
}

.cta-buttons .btn-primary:hover {
    background: var(--light-gray);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.cta-buttons .btn-secondary:hover {
    background: var(--white);
    color: var(--primary-pink);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Responsive Design for Product Pages */
@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        max-width: 100%;
        padding: 0 20px;
    }
    
    .hero-video-bg {
        min-height: 500px;
    }
    
    .product-hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .product-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .specs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .specs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .hero-video-bg {
        min-height: 400px;
    }
    
    .product-hero-content h1 {
        font-size: 2rem;
    }
    
    .product-hero-content p {
        font-size: 1rem;
    }
    
    .feature {
        font-size: 1rem;
        padding: 10px 15px;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
}

/* ====================================
   INDEX PAGE SPECIFIC STYLES
   ==================================== */

/* ====================================
   OUR OFFERINGS (scoped to section) - per provided design
   ==================================== */
#key-services.offerings-section {
	padding: 60px 0;
	background-color: #ffffff;
}

/* Remove previous decorative background for this section */
#key-services.offerings-section::before {
	display: none;
}

.offerings-section .container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 30px;
}

.offerings-section .section-header {
	margin-bottom: 50px;
	max-width: 750px;
	text-align: left;
}

.offerings-section .section-header h2 {
	font-size: 2.4rem;
	color: var(--black);
	font-weight: 600;
	margin-bottom: 10px;
	text-align: left;
}

/* Hide global underline rule inside this section */
.offerings-section .section-header h2::after {
	display: none;
}

.offerings-section .section-header .subtitle {
	font-size: 0.9rem;
	color: #7A5096;
	font-weight: 500;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	margin-bottom: 20px;
	text-align: left;
}

.offerings-section .section-header p {
	font-size: 1rem;
	color: var(--primary-red);
	line-height: 1.7;
	text-align: left;
}

.offerings-section .services-columns {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 60px;
	margin-top: 40px;
}

.offerings-section .services-column ul {
	list-style: none;
	padding: 0;
}

.offerings-section .services-column li {
	margin-bottom: 32px;
	position: relative;
	padding-left: 60px;
	padding-right: 15px;
	transition: all 0.3s ease;
}

.offerings-section .services-column li:hover {
	transform: translateX(5px);
}

.offerings-section .service-icon {
	position: absolute;
	left: 0;
	top: 5px;
	width: 40px;
	height: 40px;
	background-color: var(--primary-red);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
	transition: all 0.3s ease;
}

.offerings-section .services-column li:hover .service-icon {
	transform: scale(1.1);
	box-shadow: 0 4px 15px rgba(228, 72, 126, 0.3);
}

.offerings-section .services-column h3 {
	color: var(--black);
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 8px;
	line-height: 1.4;
}

.offerings-section .services-column p {
	color: var(--primary-red);
	font-size: 0.9rem;
	line-height: 1.6;
	margin: 0;
}

@media (max-width: 768px) {
	.offerings-section .container {
		padding: 0 20px;
	}

	.offerings-section .services-columns {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.offerings-section .section-header h2 {
		font-size: 2rem;
	}

	.offerings-section .services-column li {
		margin-bottom: 28px;
		padding-right: 0;
		padding-left: 50px;
	}

	.offerings-section .service-icon {
		width: 35px;
		height: 35px;
		border-radius: 8px;
	}
}
/* ====================================
   INDEX PAGE STYLES - COMPLETE REDESIGN
   ==================================== */

/* Essential CSS Variables */
:root {
	--primary-red: #7A5096;
	--secondary-red: #e55a8a;
	--accent-red: #e66c96;
	--light-red: #fef3f7;
	--white: #ffffff;
	--black: #000000;
	--shadow-light: rgba(255, 107, 53, 0.1);
	--shadow-medium: rgba(255, 107, 53, 0.2);
	--shadow-heavy: rgba(255, 107, 53, 0.3);
}

/* ====================================
   GLOBAL STYLES
   ==================================== */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--black);
    background: var(--white) !important;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 15px;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    	background: linear-gradient(90deg, var(--primary-red), var(--secondary-red));
    border-radius: 2px;
}

.section-header h3 {
    font-size: 1.3rem;
    color: var(--primary-red);
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--primary-red);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ====================================
   HERO SECTION
   ==================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 70px;
    background: linear-gradient(135deg, var(--light-red) 0%, var(--white) 100%);
}

.hero-background-images {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: all 0.6s ease-in-out;
    z-index: 1;
    transform: translateX(0);
}

.hero-image.active {
    opacity: 1;
    z-index: 2;
    transform: translateX(0);
}

.hero-image.slide-out-left {
    transform: translateX(-100%);
    opacity: 0;
}

.hero-image.slide-out-right {
    transform: translateX(100%);
    opacity: 0;
}

.hero-image.slide-in-from-right {
    transform: translateX(100%);
    opacity: 0;
}

.hero-image.slide-in-from-left {
    transform: translateX(-100%);
    opacity: 0;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(228, 72, 126, 0.1) 0%, rgba(255, 255, 255, 0.8) 100%);
    z-index: 3;
}











/* ====================================
   OUR OFFERINGS SECTION
   ==================================== */
#key-services {
    padding: 120px 0;
    background: var(--white);
    position: relative;
}

#key-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, var(--light-red) 0%, transparent 50%, var(--light-red) 100%);
    opacity: 0.3;
}

.services-grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.service-item {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow-light);
    border: 2px solid transparent;
    transform: translateY(0);
    will-change: transform, box-shadow, border-color;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--secondary-red));
    transform: scaleX(0);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-item:hover::before {
    transform: scaleX(1);
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(228, 72, 126, 0.2);
    border-color: var(--primary-red);
    background: linear-gradient(135deg, var(--white) 0%, #fefefe 100%);
}

.service-item:hover h4 {
    color: var(--primary-red);
}

.service-icon {
    position: relative;
    margin-bottom: 25px;
}

.service-icon i {
    font-size: 3.5rem;
    color: var(--primary-red);
    margin-bottom: 20px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    z-index: 2;
    position: relative;
    transform: scale(1) rotate(0deg);
}

.service-item:hover .service-icon i {
    transform: scale(1.2) rotate(5deg);
    color: var(--secondary-red);
}

.service-item h4 {
    color: var(--black);
    margin-bottom: 20px;
    font-size: 1.4rem;
    font-weight: 700;
    transition: color 0.4s ease;
}

.service-item p {
    color: var(--primary-red);
    line-height: 1.7;
    margin-bottom: 0;
    font-size: 1rem;
}

/* --- Why Choose SoftPills (no cards, hover only) --- */
#why-choose {
  padding: 80px 20px;
  background: linear-gradient(135deg, #fef3f7 0%, #ffffff 100%);
  text-align: center;
}

#why-choose .section-header {
  margin-bottom: 60px;
}

#why-choose .section-header h2 {
  font-size: 2.8rem;
  color: #000;
  margin-bottom: 15px;
}

#why-choose .section-header .highlight {
  color: #ff6b35;
}

#why-choose .benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 50px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.benefit-item {
  position: relative;
  padding: 20px;
  transition: transform 0.4s ease, filter 0.4s ease;
  filter: brightness(0.98);
}

.benefit-item:hover {
  transform: translateY(-8px);
  filter: brightness(1.05);
}

.benefit-item .icon-box {
  width: 72px;
  height: 72px;
  background: #ff6b35;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.8rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover .icon-box {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.benefit-item h3 {
  font-size: 1.4rem;
  color: #000;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.benefit-item:hover h3 {
  color: #ff6b35;
}

.benefit-item p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.5;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  #why-choose .benefits-grid {
    grid-template-columns: 1fr;
  }
}
/* ====================================
   PRODUCTS SECTION - EXACT REPLACEMENT
   ==================================== */
/* Products Section */
.products-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--white) !important;
    position: relative;
}

.products-section::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(228, 72, 126, 0.05), transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.section-header h2 {
    font-size: var(--h2-size-lg);
    margin-bottom: var(--spacing-sm);
    color: var(--black);
}

.products-section .section-header h2 {
    color: #7A5096;
}

.products-section .section-header p {
    color: #7A5096;
}

.products-section .section-header .highlight {
    color: #7A5096 !important;
}
.section-header .highlight {
    color: var(--primary-red) !important;
}

/* Global highlight rule to override any conflicts */
.highlight {
    color: var(--primary-red) !important;
}

.section-header p {
    font-size: var(--body-size-lg);
    color: var(--primary-red);
    max-width: 600px;
    margin: 0 auto;
}

.product-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 60px;
    background-color: var(--white) !important;
}

.category-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: var(--spacing-lg);
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 550px;
    overflow: hidden;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(122, 80, 150, 0.2);
    border-color: #7A5096;
}

.card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto var(--spacing-md);
    font-size: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--medium-gray);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.category-card:nth-child(1) .card-icon {
    background-color: #7A5096;
    border-color: #7A5096;
    color: var(--white);
}

.category-card:nth-child(2) .card-icon {
    background-color: #7A5096;
    border-color: #7A5096;
    color: var(--white);
}

.category-card:hover .card-icon {
    background-color: #7A5096;
    color: var(--white);
    border-color: #7A5096;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(122, 80, 150, 0.4);
}

.category-card h3 {
    margin-bottom: var(--spacing-sm);
    font-size: var(--h3-size-lg);
    color: #7A5096;
    font-weight: 700;
}

.category-card p {
    color: #7A5096;
    margin-bottom: 25px;
    font-size: var(--body-size-md);
    line-height: 1.6;
}

.card-features {
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: auto;
    margin-bottom: 40px;
}

.product-categories .feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 15px;
    background-color: var(--white) !important;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.product-categories .feature:hover {
    background-color: var(--white) !important;
    transform: translateX(5px);
}

.product-categories .feature i {
    color: #7A5096;
    font-size: 0.9rem;
}

.product-categories .feature span {
    font-size: 0.9rem;
    font-weight: 500;
    color: #7A5096;
}

.learn-more-btn {
    margin-top: 30px;
    width: 100%;
    padding: 15px 30px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 15px;
    background-color: #7A5096;
    color: var(--white);
    border: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.learn-more-btn:hover {
    background-color: var(--white);
    color: #7A5096;
    border: 2px solid #7A5096;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(122, 80, 150, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .product-categories {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
        margin-top: 40px;
    }
    
    .category-card {
        min-height: 500px;
        padding: var(--spacing-md);
    }
    
    .section-header h2 {
        font-size: var(--h2-size-md);
    }
    
    .section-header p {
        font-size: var(--body-size-md);
    }
}

@media (max-width: 480px) {
    .products-section {
        padding: var(--spacing-lg) 0;
    }
    
    .category-card {
        padding: var(--spacing-sm);
        min-height: 450px;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .section-header h2 {
        font-size: var(--h2-size-sm);
    }
}

/* ====================================
   READY TO TRANSFORM SECTION - REDESIGNED
   ==================================== */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-red) 100%);
    position: relative;
    overflow: hidden;
    color: var(--white);
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.1);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    animation: patternMove 20s linear infinite;
}

.cta-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    animation: glowPulse 4s ease-in-out infinite;
}

.cta-section .particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.cta-section .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: particleFloat 6s linear infinite;
}

.cta-section .particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.cta-section .particle:nth-child(2) { top: 60%; left: 80%; animation-delay: 2s; }
.cta-section .particle:nth-child(3) { top: 80%; left: 20%; animation-delay: 4s; }

@keyframes particleFloat {
    0% { transform: translateY(0) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.1); }
}

@keyframes patternMove {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(20px) translateY(20px); }
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--white);
    line-height: 1.3;
    position: relative;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    animation: textGlow 3s ease-in-out infinite;
}

@keyframes textGlow {
    0%, 100% { text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); }
    50% { text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 255, 255, 0.3); }
}

.cta-section h2 .highlight {
    position: relative;
    display: inline-block;
    color: var(--white) !important;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5), 0 0 10px rgba(255, 255, 255, 0.3);
    /* Changed to white with better text shadow for visibility on pink background */
}

.cta-section p {
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 2rem;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

/* Ensure highlighted text in CTA paragraph is visible */
.cta-section p .highlight {
    color: var(--white) !important;
    font-weight: 700;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

.cta-icon {
    margin-bottom: 1.5rem;
}

.cta-icon i {
    font-size: 3rem;
    color: var(--white);
    animation: float 3s ease-in-out infinite;
    opacity: 0.9;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    background: linear-gradient(45deg, var(--white), rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.cta-buttons .btn {
    padding: 1rem 2.2rem;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 200px;
    border-radius: 30px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.cta-buttons .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.cta-buttons .btn:hover::before {
    left: 100%;
}

.cta-buttons .btn-primary {
    background: var(--white);
    border: 2px solid var(--white);
    color: var(--primary-red);
}

.cta-buttons .btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    position: relative;
    transition: all 0.3s ease;
}

.cta-buttons .btn-secondary:hover {
    background: var(--white);
    color: var(--primary-red);
    transform: translateY(-3px);
}

.cta-buttons .btn i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.cta-buttons .btn:hover i {
    transform: scale(1.1);
}

/* ====================================
   GET IN TOUCH SECTION
   ==================================== */
.contact {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--light-red) 0%, #ffffff 50%, var(--light-red) 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ff6b35' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 1;
}

.contact .section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.contact .section-header h2 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 20px;
    font-family: 'Georgia', serif;
}

.contact .section-header p {
    font-size: 1.2rem;
    color: var(--primary-red);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.contact-method::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.contact-method:hover::before {
    transform: scaleY(1);
}

.contact-method:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-red);
}

.method-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.method-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.contact-method:hover .method-icon::before {
    left: 100%;
}

.method-icon i {
    font-size: 1.5rem;
    color: var(--white);
    z-index: 1;
    position: relative;
}

.method-details h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
}

.method-details p {
    font-size: 1rem;
    color: var(--primary-red);
    line-height: 1.6;
    margin: 0;
    font-family: 'Georgia', serif;
}

.contact-form {
    background: var(--white);
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(228, 72, 126, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--secondary-red));
}

.form-group {
    margin-bottom: 30px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--black);
    font-size: 0.95rem;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid var(--primary-red);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
    font-family: 'Georgia', serif;
    color: var(--black);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 4px rgba(228, 72, 126, 0.1);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    color: var(--white);
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
        font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(228, 72, 126, 0.3);
}

.submit-btn span {
    z-index: 1;
    position: relative;
}

.submit-btn i {
    font-size: 1rem;
    z-index: 1;
    position: relative;
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(5px);
}

/* ====================================
   ANIMATIONS
   ==================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

/* ====================================
   RESPONSIVE DESIGN - COMPREHENSIVE
   ==================================== */

/* ====================================
   HERO SECTION RESPONSIVE
   ==================================== */
@media (max-width: 1200px) {
    .hero {
        height: 90vh;
        min-height: 500px;
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .hero p {
        font-size: 1.2rem;
        max-width: 500px;
    }
}

@media (max-width: 992px) {
    .hero {
        height: 80vh;
        min-height: 450px;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero p {
        font-size: 1.1rem;
        max-width: 450px;
    }
    

}

@media (max-width: 768px) {
    .hero {
        height: 100vh;
        min-height: 500px;
        margin-top: 60px;
        display: flex;
        flex-direction: column;
    }
    
    .hero h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .hero p {
        font-size: 1rem;
        max-width: 400px;
        margin-bottom: 1.5rem;
    }
    

}

@media (max-width: 480px) {
    .hero {
        height: 100vh;
        min-height: 450px;
        margin-top: 50px;
        display: flex;
        flex-direction: column;
    }
    
    .hero h1 {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .hero p {
        font-size: 0.9rem;
        max-width: 320px;
        margin-bottom: 1.2rem;
    }
    

}

@media (max-width: 375px) {
    .hero {
        height: 100vh;
        min-height: 400px;
        margin-top: 45px;
        display: flex;
        flex-direction: column;
    }
    
    .hero h1 {
        font-size: 1.8rem;
        margin-bottom: 0.6rem;
    }
    
    .hero p {
        font-size: 0.85rem;
        max-width: 280px;
        margin-bottom: 1rem;
    }
    

}

/* Carousel Mobile Image Visibility Fix */
@media (max-width: 768px) {
    .hero-background-images {
        position: relative;
        width: 100%;
        height: 80vh;
        min-height: 400px;
        flex: 1;
    }
    
    .hero-image {
        background-size: cover !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
        width: 100% !important;
        height: 100% !important;
    }
    
    .hero-image.active {
        opacity: 1;
        z-index: 2;
    }
    
    .image-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.2);
        z-index: 1;
    }
}

@media (max-width: 480px) {
    .hero-background-images {
        position: relative;
        width: 100%;
        height: 75vh;
        min-height: 350px;
        flex: 1;
        overflow: hidden;
    }
    
    .hero-image {
        background-size: cover !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
        width: 100% !important;
        height: 100% !important;
    }
    
    /* Adjust indicators for smaller screens */
    .carousel-indicators {
        bottom: -50px;
        padding: 12px 18px;
        gap: 10px;
    }
    
    .carousel-indicators .indicator {
        width: 12px;
        height: 12px;
    }
    
    
}

@media (max-width: 375px) {
    .hero-background-images {
        height: 70vh;
        min-height: 300px;
    }
    
    .hero-image {
        background-size: cover !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
        width: 100% !important;
        height: 100% !important;
    }
    
    /* Adjust indicators for very small screens */
    .carousel-indicators {
        bottom: -45px;
        padding: 10px 15px;
        gap: 8px;
    }
    
    .carousel-indicators .indicator {
        width: 10px;
        height: 10px;
    }
}

/* ====================================
   WHO WE ARE SECTION RESPONSIVE - COMPLETELY REWRITTEN
   ==================================== */

/* Base Styles for Who We Are Section */
.who-we-are-section {
    padding: 80px 0;
    background: transparent;
    overflow: visible;
}

/* Critical fix to ensure images are always fully visible */
.who-we-are-section .image-card,
.who-we-are-section .card-image,
.who-we-are-section .card-image img {
    overflow: visible !important;
    height: auto !important;
    min-height: 250px !important;
    background: transparent !important;
}

.who-we-are-section .image-card {
    min-height: 306px !important;
}

.who-we-are-section .card-image {
    min-height: 250px !important;
}

.who-we-are-section .card-image img {
    min-height: 250px !important;
    object-fit: cover !important;
}

.who-we-are-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 32px;
    margin-top: 60px;
    margin-bottom: 36px;
    max-width: 1720px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.who-we-are-text-left {
    padding-left: 70px;
    max-width: 520px;
    flex-shrink: 0;
}

.who-we-are-text-right {
    flex: 1;
    padding-right: 70px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}

.section-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-description {
    font-size: 1.1rem;
    color: var(--primary-red);
    line-height: 1.6;
    max-width: 600px;
    margin-bottom: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.image-cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(1, 1fr);
    gap: 80px;
    margin-top: 60px;
    margin-bottom: 0;
    padding-bottom: 100px;
    max-width: 1700px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
    overflow: visible;
    width: 100%;
}

.image-card {
    width: 100%;
    height: auto;
    min-height: 260px;
    flex-shrink: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100%;
}

.card-image {
    width: 100%;
    height: auto;
    min-height: 220px;
    position: relative;
    overflow: visible;
    max-width: 100%;
    background: transparent;
}

.card-image img {
    width: 100%;
    height: auto;
    min-height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}



.card-button {
    position: absolute;
    left: 50%;
    bottom: -25px;
    transform: translateX(-50%);
    min-width: 240px;
    width: 340px;
    padding: 14px 24px;
    background: var(--white);
    color: var(--black);
    border: 2px solid var(--primary-pink);
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    z-index: 10;
    text-decoration: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.card-button:hover {
    background: var(--primary-pink);
    color: var(--white);
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.button-text {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
    white-space: nowrap;
}

.discover-text {
    display: block;
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Desktop Layout */
@media (min-width: 1201px) {
    .who-we-are-content {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 32px;
        margin-top: 60px;
        margin-bottom: 36px;
        max-width: 1720px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .who-we-are-text-left {
        padding-left: 70px;
        max-width: 520px;
        flex-shrink: 0;
    }
    
    .who-we-are-text-right {
        flex: 1;
        padding-right: 70px;
        display: flex;
        align-items: flex-start;
        justify-content: flex-end;
    }
    
    .image-cards-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(1, 1fr);
        gap: 80px;
        margin-top: 52px;
        margin-bottom: 0;
        padding-bottom: 32px;
        max-width: 1720px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .image-card {
        width: 461px;
        height: 306px;
        flex-shrink: 0;
    }
    
    .card-image {
        width: 458px;
        height: 250px;
    }
    
    .card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .card-button {
        position: absolute;
        left: 50%;
        bottom: -25px;
        transform: translateX(-50%);
        min-width: 240px;
        width: 350px;
    }
}

/* Large Tablet */
@media (max-width: 1200px) {
    .who-we-are-content {
        flex-direction: column;
        align-items: center;
        gap: 40px;
        margin-top: 40px;
        margin-bottom: 30px;
        padding: 0 20px;
    }
    
    .who-we-are-text-left,
    .who-we-are-text-right {
        padding: 0;
        text-align: center;
        max-width: 100%;
    }
    
    .section-title {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
    
    .section-description {
        max-width: 600px;
        margin: 0 auto;
        text-align: center;
        font-size: 1.1rem;
    }
    
    .image-cards-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(1, 1fr);
        gap: 80px;
        margin-top: 40px;
        max-width: 100%;
        padding: 0 20px;
        padding-bottom: 95px;
    }
    
    .image-card {
        width: 320px;
        max-width: 320px;
        height: auto;
        min-height: 220px;
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        flex-shrink: 0;
    }
    
    .card-image {
        width: 320px;
        height: auto;
        min-height: 180px;
        position: relative;
        border-radius: 12px;
        overflow: hidden;
    }
    
    .card-image img {
        width: 320px;
        height: auto;
        min-height: 180px;
        object-fit: cover;
        display: block;
        border-radius: 12px;
    }
    
    .card-button {
        position: absolute;
        left: 50%;
        bottom: -25px;
        transform: translateX(-50%);
        width: 100%;
        max-width: 300px;
        margin-top: 0;
        padding: 12px 20px;
        font-size: 0.95rem;
        min-width: auto;
        border-radius: 8px;
        z-index: 10;
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
    }
}

/* Tablet */
@media (max-width: 768px) {
    .who-we-are-section {
        padding: 50px 0;
    }
    
    .who-we-are-content {
        gap: 30px;
        margin-top: 30px;
        margin-bottom: 25px;
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .section-description {
        font-size: 1rem;
        max-width: 500px;
        line-height: 1.5;
    }
    
    .image-cards-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(1, 1fr);
        gap: 80px;
        margin-top: 30px;
        padding: 0 15px;
        padding-bottom: 75px;
    }
    
    .image-card {
        width: 280px;
        max-width: 280px;
        height: auto;
        min-height: 200px;
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        flex-shrink: 0;
    }
    
    .card-image {
        width: 280px;
        height: auto;
        min-height: 160px;
        position: relative;
        border-radius: 12px;
        overflow: hidden;
    }
    
    .card-image img {
        width: 280px;
        height: auto;
        min-height: 160px;
        object-fit: cover;
        display: block;
        border-radius: 12px;
    }
    
    .card-button {
        position: absolute;
        left: 50%;
        bottom: -25px;
        transform: translateX(-50%);
        width: 100%;
        max-width: 260px;
        margin-top: 0;
        padding: 11px 16px;
        font-size: 0.9rem;
        min-width: auto;
        border-radius: 8px;
        z-index: 10;
        box-shadow: 0 5px 12px rgba(0, 0, 0, 0.12);
    }
}

/* Mobile */
@media (max-width: 500px) {
    .who-we-are-section {
        padding: 40px 0;
    }
    
    .who-we-are-content {
        gap: 25px;
        margin-top: 25px;
        margin-bottom: 20px;
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }
    
    .section-description {
        font-size: 0.9rem;
        max-width: 100%;
        line-height: 1.4;
    }
    
    .image-cards-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(1, 1fr);
        gap: 80px;
        margin-top: 25px;
        padding: 0 15px;
        padding-bottom: 70px;
    }
    
    .image-card {
        width: 220px;
        max-width: 220px;
        height: auto;
        min-height: 180px;
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        flex-shrink: 0;
    }
    
    .card-image {
        width: 220px;
        height: auto;
        min-height: 140px;
        position: relative;
        border-radius: 10px;
        overflow: hidden;
    }
    
    .card-image img {
        width: 220px;
        height: auto;
        min-height: 140px;
        object-fit: cover;
        display: block;
        border-radius: 10px;
    }
    
    .card-button {
        position: absolute;
        left: 50%;
        bottom: -25px;
        transform: translateX(-50%);
        width: 100%;
        max-width: 200px;
        margin-top: 0;
        padding: 10px 14px;
        font-size: 0.85rem;
        min-width: auto;
        border-radius: 8px;
        z-index: 10;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
    }
    
    .button-text {
        font-size: 0.8rem;
    }
    
    .discover-text {
        font-size: 0.7rem;
    }
}

/* Medium Mobile - Transition Breakpoint */
@media (max-width: 680px) and (min-width: 501px) {
    .who-we-are-section {
        padding: 35px 0;
    }
    
    .who-we-are-content {
        flex-direction: column;
        align-items: center;
        gap: 25px;
        margin-top: 25px;
        margin-bottom: 20px;
        padding: 0 15px;
        text-align: center;
    }
    
    .who-we-are-text-left,
    .who-we-are-text-right {
        padding: 0;
        text-align: center;
        max-width: 100%;
        order: 1;
    }
    
    .section-title {
        font-size: 1.6rem;
        margin-bottom: 12px;
        max-width: 100%;
    }
    
    .section-description {
        font-size: 0.9rem;
        max-width: 100%;
        line-height: 1.4;
        margin-bottom: 25px;
        order: 2;
    }
    
    .image-cards-container {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, 1fr);
        gap: 80px;
        margin-top: 25px;
        max-width: 100%;
        padding: 0 15px;
        order: 3;
    }
    
    .image-card {
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: 300px;
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .card-image {
        width: 100%;
        height: 220px;
        position: relative;
        border-radius: 10px;
        overflow: hidden;
    }
    
    .card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        border-radius: 10px;
    }
    
    .card-button {
        position: absolute !important;
        left: 50% !important;
        bottom: -25px !important;
        transform: translateX(-50%) !important;
        width: 100%;
        max-width: 100%;
        margin-top: 0;
        padding: 12px 18px;
        font-size: 0.9rem;
        min-width: auto;
        border-radius: 8px;
    }
}

/* Critical Fix for Devices Below 680px */
@media (max-width: 680px) {
    .who-we-are-section {
        padding: 30px 0;
    }
    
    .who-we-are-content {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-top: 20px;
        margin-bottom: 15px;
        padding: 0 10px;
        text-align: center;
    }
    
    .who-we-are-text-left,
    .who-we-are-text-right {
        padding: 0;
        text-align: center;
        max-width: 100%;
        order: 1;
    }
    
    .section-title {
        font-size: 1.4rem;
        margin-bottom: 10px;
        max-width: 100%;
    }
    
    .section-description {
        font-size: 0.85rem;
        max-width: 100%;
        line-height: 1.4;
        margin-bottom: 20px;
        order: 2;
    }
    
    .image-cards-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(1, 1fr);
        gap: 80px;
        margin-top: 20px;
        max-width: 100%;
        padding: 0 10px;
        padding-bottom: 60px;
        order: 3;
        justify-content: center;
    }
    
    .image-card {
        width: 200px;
        max-width: 200px;
        height: auto;
        position: relative;
        margin-bottom: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        flex-shrink: 0;
    }
    
    .card-image {
        width: 200px;
        height: auto;
        position: relative;
        min-height: 140px;
        overflow: visible;
    }
    
    .card-image img {
        width: 200px;
        height: auto;
        min-height: 140px;
        object-fit: cover;
        display: block;
        overflow: visible;
    }
    
    .card-button {
        position: absolute !important;
        left: 50% !important;
        bottom: -25px !important;
        transform: translateX(-50%) !important;
        width: 100% !important;
        max-width: 180px !important;
        margin-top: 0 !important;
        padding: 8px 12px !important;
        font-size: 0.8rem !important;
        min-width: auto !important;
        border-radius: 8px !important;
        background: var(--white) !important;
        color: var(--black) !important;
        border: 2px solid var(--primary-pink) !important;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12) !important;
        transition: all 0.3s ease !important;
        z-index: 10 !important;
    }
    
    .card-button:hover {
        background: var(--primary-pink) !important;
        color: var(--white) !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15) !important;
    }
    
    .button-text {
        font-size: 0.75rem;
        font-weight: 600;
    }
    
    .discover-text {
        font-size: 0.65rem;
        opacity: 0.8;
    }
}

/* Small Mobile */
@media (max-width: 375px) {
    .who-we-are-section {
        padding: 25px 0;
    }
    
    .who-we-are-content {
        gap: 15px;
        margin-top: 15px;
        margin-bottom: 10px;
        padding: 0 8px;
    }
    
    .section-title {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }
    
    .section-description {
        font-size: 0.8rem;
        line-height: 1.3;
        margin-bottom: 15px;
    }
    
    .image-cards-container {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, 1fr);
        gap: 80px;
        margin-top: 15px;
        padding: 0 8px;
        padding-bottom: 40px;
    }
    
    .image-card {
        width: calc(100% - 16px);
        max-width: calc(100% - 16px);
        height: auto;
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .card-image {
        width: 100%;
        height: auto;
        position: relative;
        aspect-ratio: 16/9;
    }
    
    .card-image img {
        width: 100%;
        height: auto;
        object-fit: cover;
        display: block;
        aspect-ratio: 16/9;
    }
    
    .card-button {
        position: absolute !important;
        left: 50% !important;
        bottom: -25px !important;
        transform: translateX(-50%) !important;
        width: 100%;
        max-width: none;
        margin-top: 0;
        padding: 10px 16px;
        font-size: 0.8rem;
        min-width: auto;
        border-radius: 8px;
    }
    
    .button-text {
        font-size: 0.8rem;
    }
    
    .discover-text {
        font-size: 0.65rem;
    }
}

/* Extra Small Mobile - Critical Fix */
@media (max-width: 400px) {
    .who-we-are-section {
        padding: 20px 0;
    }
    
    .who-we-are-content {
        gap: 12px;
        margin-top: 12px;
        margin-bottom: 8px;
        padding: 0 5px;
    }
    
    .section-title {
        font-size: 1.1rem;
        margin-bottom: 6px;
    }
    
    .section-description {
        font-size: 0.75rem;
        line-height: 1.2;
        margin-bottom: 12px;
    }
    
    .image-cards-container {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, 1fr);
        gap: 80px;
        margin-top: 12px;
        padding: 0 5px;
        padding-bottom: 35px;
    }
    
    .image-card {
        width: calc(100% - 10px);
        max-width: calc(100% - 10px);
        height: auto;
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .card-image {
        width: 100%;
        height: auto;
        position: relative;
        min-height: 180px;
        overflow: visible;
        border-radius: 8px;
    }
    
    .card-image img {
        width: 100%;
        height: auto;
        min-height: 180px;
        object-fit: cover;
        display: block;
        overflow: visible;
    }
    
    .card-button {
        position: absolute !important;
        left: 50% !important;
        bottom: -25px !important;
        transform: translateX(-50%) !important;
        width: 100%;
        max-width: none;
        margin-top: 0;
        padding: 8px 12px;
        font-size: 0.75rem;
        min-width: auto;
        border-radius: 8px;
    }
    
    .button-text {
        font-size: 0.75rem;
    }
    
    .discover-text {
        font-size: 0.6rem;
    }
}

/* Very Small Mobile - Critical Fix */
@media (max-width: 350px) {
    .who-we-are-section {
        padding: 15px 0;
    }
    
    .who-we-are-content {
        gap: 10px;
        margin-top: 10px;
        margin-bottom: 5px;
        padding: 0 3px;
    }
    
    .section-title {
        font-size: 1rem;
        margin-bottom: 5px;
    }
    
    .section-description {
        font-size: 0.7rem;
        line-height: 1.2;
        margin-bottom: 10px;
    }
    
    .image-cards-container {
        gap: 15px;
        margin-top: 10px;
        padding: 0 3px;
    }
    
    .image-card {
        width: calc(100% - 6px);
        max-width: calc(100% - 6px);
        height: auto;
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .card-image {
        width: 100%;
        height: auto;
        position: relative;
        min-height: 160px;
        overflow: visible;
        border-radius: 6px;
    }
    
    .card-image img {
        width: 100%;
        height: auto;
        min-height: 160px;
        object-fit: cover;
        display: block;
        overflow: visible;
    }
    
    .card-button {
        position: absolute !important;
        left: 50% !important;
        bottom: -25px !important;
        transform: translateX(-50%) !important;
        width: 100%;
        max-width: none;
        margin-top: 0;
        padding: 6px 10px;
        font-size: 0.7rem;
        min-width: auto;
        border-radius: 6px;
    }
    
    .button-text {
        font-size: 0.7rem;
    }
    
    .discover-text {
        font-size: 0.55rem;
    }
}

/* ====================================
   SECTION HEADERS RESPONSIVE
   ==================================== */
@media (max-width: 992px) {
    .section-header {
        margin-bottom: 50px;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .section-header h3 {
        font-size: 1.2rem;
    }
    
    .section-header p {
        font-size: 1rem;
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header h3 {
        font-size: 1.1rem;
    }
    
    .section-header p {
        font-size: 0.95rem;
        max-width: 450px;
    }
}

@media (max-width: 480px) {
    .section-header {
        margin-bottom: 30px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header h3 {
        font-size: 1rem;
    }
    
    .section-header p {
        font-size: 0.9rem;
        max-width: 320px;
    }
}

/* ====================================
   SERVICES SECTION RESPONSIVE
   ==================================== */
@media (max-width: 1200px) {
    .services-grid-2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .service-item {
        padding: 35px 25px;
    }
}

@media (max-width: 992px) {
    .services-grid-2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .service-item {
        padding: 30px 20px;
    }
    
    .service-icon i {
        font-size: 3rem;
    }
    
    .service-item h4 {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .services-grid-2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 40px;
    }
    
    .service-item {
        padding: 25px 20px;
    }
    
    .service-icon i {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .service-item h4 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .service-item p {
        font-size: 0.9rem;
    }
    
    #key-services {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .services-grid-2 {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .service-item {
        padding: 20px 15px;
        border-radius: 15px;
    }
    
    .service-icon i {
        font-size: 2rem;
        margin-bottom: 12px;
    }
    
    .service-item h4 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .service-item p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
}

@media (max-width: 375px) {
    .services-grid-2 {
        gap: 12px;
    }
    
    .service-item {
        padding: 18px 12px;
        border-radius: 12px;
    }
    
    .service-icon i {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    .service-item h4 {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .service-item p {
        font-size: 0.8rem;
    }
}

/* ====================================
   BENEFITS SECTION RESPONSIVE
   ==================================== */
@media (max-width: 1200px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 992px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .benefit-card {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 40px;
    }
    
    .benefit-card {
        padding: 30px 20px;
        min-height: 280px;
    }
    
    .benefit-icon {
        font-size: 3rem;
        margin-bottom: 20px;
    }
    
    .benefit-card h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .benefit-card p {
        font-size: 0.9rem;
    }
    
    #why-choose {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .benefit-card {
        padding: 20px 15px;
        min-height: 220px;
        border-radius: 15px;
    }
    
    .benefit-icon {
        font-size: 2rem;
        margin-bottom: 12px;
    }
    
    .benefit-card h3 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .benefit-card p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
}

@media (max-width: 375px) {
    .benefits-grid {
        gap: 12px;
    }
    
    .benefit-card {
        padding: 18px 12px;
        min-height: 200px;
        border-radius: 12px;
    }
    
    .benefit-icon {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    .benefit-card h3 {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .benefit-card p {
        font-size: 0.8rem;
    }
}

/* ====================================
   PRODUCTS SECTION RESPONSIVE
   ==================================== */
@media (max-width: 1200px) {
    .product-categories {
        grid-template-columns: 1fr;
        max-width: 500px;
        gap: 30px;
    }
    
    .category-card {
        height: auto;
        min-height: 500px;
    }
}

@media (max-width: 992px) {
    .product-categories {
        max-width: 600px;
        gap: 25px;
    }
    
    .category-card {
        min-height: 450px;
    }
    
    .card-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .category-card h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    .product-categories {
        max-width: 500px;
        gap: 20px;
        margin-top: 40px;
    }
    
    .category-card {
        min-height: 400px;
        padding: 25px 20px;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
        margin-bottom: 15px;
    }
    
    .category-card h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .category-card p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .card-features {
        margin: 15px 0;
        gap: 8px;
        margin-bottom: 30px;
    }
    
    .feature {
        font-size: 0.9rem;
    }
    
    .learn-more-btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    #products {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .product-categories {
        max-width: 100%;
        gap: 20px;
    }
    
    .category-card {
        min-height: 380px;
        padding: 30px 20px;
    }
    
    .card-icon {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
    }
    
    .category-card h3 {
        font-size: 1.2rem;
    }
    
    .category-card p {
        font-size: 0.85rem;
    }
    
    .feature {
        font-size: 0.85rem;
    }
    
    .learn-more-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

/* ====================================
   CTA SECTION RESPONSIVE
   ==================================== */
@media (max-width: 992px) {
    .cta-section {
        padding: 70px 0;
    }
    
    .cta-content {
        max-width: 600px;
        padding: 15px;
    }
    
    .cta-icon i {
        font-size: 2.5rem;
        margin-bottom: 1.2rem;
    }
    
    .cta-section h2 {
        font-size: 2.2rem;
        margin-bottom: 0.8rem;
    }
    
    .cta-section p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-buttons {
        margin-top: 1.2rem;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-content {
        max-width: 500px;
        padding: 15px;
    }
    
    .cta-icon i {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .cta-section h2 {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .cta-section p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        margin-top: 1.5rem;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .cta-buttons .btn {
        padding: 1rem 2.2rem;
        font-size: 1rem;
        min-width: 200px;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 50px 0;
    }
    
    .cta-content {
        max-width: 100%;
        padding: 15px;
    }
    
    .cta-icon i {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .cta-section h2 {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .cta-section p {
        font-size: 0.85rem;
        margin-bottom: 1.2rem;
    }
    
    .cta-buttons .btn {
        padding: 0.9rem 2rem;
        font-size: 0.9rem;
        min-width: 180px;
    }
}

/* ====================================
   CONTACT SECTION RESPONSIVE
   ==================================== */
@media (max-width: 1200px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-methods {
        max-width: 800px;
        margin: 0 auto;
    }
    
    .contact-form {
        max-width: 600px;
        margin: 0 auto;
    }
}

/* Mobile Contact Section - Full Width */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
    }
    
    .contact-methods {
        max-width: 100%;
        margin: 0;
        gap: 20px;
    }
    
    .contact-form {
        max-width: 100%;
        margin: 0;
        padding: 30px 20px;
    }
    
    .contact-method {
        padding: 20px 15px;
    }
    
    .method-icon {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
        margin-bottom: 15px;
    }
    
    .contact-method h4 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .contact-method p {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 15px 18px;
        font-size: 0.95rem;
    }
    
    .submit-btn {
        padding: 15px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .contact-content {
        padding: 0 10px;
    }
    
    .contact-methods {
        gap: 15px;
    }
    
    .contact-method {
        padding: 25px 20px;
    }
    
    .method-icon {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
    }
    
    .contact-method h4 {
        font-size: 1rem;
    }
    
    .contact-method p {
        font-size: 0.8rem;
    }
    
    .contact-form {
        padding: 25px 15px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px 16px;
        font-size: 0.9rem;
    }
    
    .submit-btn {
        padding: 14px 25px;
        font-size: 0.9rem;
    }
}

@media (max-width: 992px) {
    .contact-methods {
        max-width: 700px;
    }
    
    .contact-form {
        max-width: 500px;
    }
    
    .contact-method {
        padding: 25px 20px;
    }
    
    .method-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .contact-method h4 {
        font-size: 1.2rem;
    }
    
    .contact-method p {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 60px 0;
    }
    
    .contact-methods {
        max-width: 600px;
        gap: 20px;
    }
    
    .contact-method {
        padding: 20px 15px;
    }
    
    .method-icon {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
        margin-bottom: 15px;
    }
    
    .contact-method h4 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .contact-method p {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }
    
    .contact-form {
        max-width: 100%;
        padding: 30px 20px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 15px 18px;
        font-size: 0.95rem;
    }
    
    .submit-btn {
        padding: 15px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .contact {
        padding: 50px 0;
    }
    
    .contact-methods {
        max-width: 100%;
        gap: 15px;
    }
    
    .contact-method {
        padding: 25px 20px;
    }
    
    .method-icon {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
    }
    
    .contact-method h4 {
        font-size: 1rem;
    }
    
    .contact-method p {
        font-size: 0.8rem;
    }
    
    .contact-form {
        padding: 25px 15px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px 16px;
        font-size: 0.9rem;
    }
    
    .submit-btn {
        padding: 14px 25px;
        font-size: 0.9rem;
    }
}

@media (max-width: 992px) {
    .contact-methods {
        max-width: 700px;
    }
    
    .contact-form {
        max-width: 500px;
    }
    
    .contact-method {
        padding: 25px 20px;
    }
    
    .method-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .contact-method h4 {
        font-size: 1.2rem;
    }
    
    .contact-method p {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 60px 0;
    }
    
    .contact-methods {
        max-width: 600px;
        gap: 20px;
    }
    
    .contact-method {
        padding: 20px 15px;
    }
    
    .method-icon {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
        margin-bottom: 15px;
    }
    
    .contact-method h4 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .contact-method p {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }
    
    .contact-form {
        max-width: 100%;
        padding: 30px 20px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 15px 18px;
        font-size: 0.95rem;
    }
    
    .submit-btn {
        padding: 15px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .contact {
        padding: 50px 0;
    }
    
    .contact-methods {
        max-width: 100%;
        gap: 15px;
    }
    
    .contact-method {
        padding: 25px 20px;
    }
    
    .method-icon {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
    }
    
    .contact-method h4 {
        font-size: 1rem;
    }
    
    .contact-method p {
        font-size: 0.8rem;
    }
    
    .contact-form {
        padding: 25px 15px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px 16px;
        font-size: 0.9rem;
    }
    
    .submit-btn {
        padding: 14px 25px;
        font-size: 0.9rem;
    }
}

/* ====================================
   CONTAINER RESPONSIVE
   ==================================== */
@media (max-width: 1200px) {
    .container {
        max-width: 1000px;
        padding: 0 25px;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 900px;
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 100%;
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
}

/* ====================================
   GENERAL SECTION PADDING RESPONSIVE
   ==================================== */
@media (max-width: 768px) {
    #key-services,
    #why-choose,
    #products,
    .cta-section,
    .contact {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    #key-services,
    #why-choose,
    #products,
    .cta-section,
    .contact {
        padding: 50px 0;
    }
}





/* ====================================
   INTERACTIVE ELEMENTS RESPONSIVE
   ==================================== */
@media (max-width: 768px) {
    .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
        min-width: 160px;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
    
    .learn-more-btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        min-width: 140px;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .learn-more-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

/* ====================================
   ANIMATION RESPONSIVE ADJUSTMENTS
   ==================================== */
@media (max-width: 768px) {
    .benefit-card:hover,
    .service-item:hover,
    .category-card:hover {
        transform: translateY(-8px);
    }
    
    .method-card:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 480px) {
    .benefit-card:hover,
    .service-item:hover,
    .category-card:hover {
        transform: translateY(-5px);
    }
    
    .method-card:hover {
        transform: translateY(-5px);
    }
}

/* ====================================
   TOUCH DEVICE OPTIMIZATIONS
   ==================================== */
@media (hover: none) and (pointer: coarse) {
    .benefit-card:hover,
    .service-item:hover,
    .category-card:hover,
    .method-card:hover {
        transform: none;
    }
    
    .btn:hover {
        transform: none;
    }
    
    
}

/* ====================================
   HIGH DPI DISPLAYS
   ==================================== */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-background-images .hero-image {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* ====================================
   MOBILE FOOTER REDESIGN
   ==================================== */
@media (max-width: 768px) {
    /* Footer Main Content */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-brand {
        order: 1;
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .footer-logo img {
        height: 50px;
        margin: 0 auto 15px;
    }
    
    .footer-tagline {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .footer-description {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 20px;
    }
    
    .footer-social h4 {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .social-icons {
        justify-content: center;
        gap: 15px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    /* Footer Links */
    .footer-links,
    .footer-services {
        order: 2;
        padding: 20px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .footer-links h3,
    .footer-services h3 {
        font-size: 1.1rem;
        margin-bottom: 15px;
        color: var(--white);
    }
    
    .footer-links ul,
    .footer-services ul {
        gap: 8px;
    }
    
    .footer-links a,
    .footer-services a {
        font-size: 0.9rem;
        padding: 5px 0;
    }
    
    /* Footer Contact */
    .footer-contact {
        order: 3;
        padding-top: 20px;
    }
    
    .footer-contact h3 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .contact-item {
        margin-bottom: 15px;
        text-align: center;
    }
    
    .contact-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        margin: 0 auto 10px;
    }
    
    .contact-details h4 {
        font-size: 0.9rem;
        margin-bottom: 5px;
    }
    
    .contact-details p {
        font-size: 0.85rem;
    }
    
    /* Newsletter */
    .newsletter {
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .newsletter h4 {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .newsletter p {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }
    
    .newsletter-form .input-group {
        flex-direction: column;
        gap: 10px;
    }
    
    .newsletter-form input {
        width: 100%;
        padding: 12px 16px;
        font-size: 0.9rem;
        border-radius: 8px;
    }
    
    .newsletter-btn {
        width: 100%;
        padding: 12px 16px;
        font-size: 0.9rem;
        border-radius: 8px;
    }
}

@media (max-width: 480px) {
    .footer-content {
        gap: 25px;
    }
    
    .footer-brand {
        padding-bottom: 15px;
    }
    
    .footer-logo img {
        height: 45px;
        margin-bottom: 12px;
    }
    
    .footer-tagline {
        font-size: 0.95rem;
    }
    
    .footer-description {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }
    
    .footer-social h4 {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .footer-links,
    .footer-services {
        padding: 15px 0;
    }
    
    .footer-links h3,
    .footer-services h3 {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    
    .footer-links a,
    .footer-services a {
        font-size: 0.85rem;
        padding: 4px 0;
    }
    
    .footer-contact {
        padding-top: 15px;
    }
    
    .footer-contact h3 {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    
    .contact-item {
        margin-bottom: 12px;
    }
    
    .contact-icon {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
        margin-bottom: 8px;
    }
    
    .contact-details h4 {
        font-size: 0.85rem;
    }
    
    .contact-details p {
        font-size: 0.8rem;
    }
    
    .newsletter {
        margin-top: 15px;
        padding-top: 15px;
    }
    
    .newsletter h4 {
        font-size: 0.95rem;
    }
    
    .newsletter p {
        font-size: 0.8rem;
        margin-bottom: 12px;
    }
    
    .newsletter-form input {
        padding: 10px 14px;
        font-size: 0.85rem;
    }
    
    .newsletter-btn {
        padding: 10px 14px;
        font-size: 0.85rem;
    }
}

@media (max-width: 375px) {
    .footer-content {
        gap: 20px;
    }
    
    .footer-logo img {
        height: 40px;
    }
    
    .footer-tagline {
        font-size: 0.9rem;
    }
    
    .footer-description {
        font-size: 0.8rem;
    }
    
    .social-link {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }
    
    .footer-links a,
    .footer-services a {
        font-size: 0.8rem;
    }
    
    .contact-icon {
        width: 28px;
        height: 28px;
        font-size: 0.85rem;
    }
    
    .newsletter-form input,
    .newsletter-btn {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
}

/* Footer Bottom Mobile Optimization */
@media (max-width: 768px) {
    .footer-bottom {
        padding: 20px 0;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .copyright p {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }
    
    .footer-bottom-links {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-bottom-links a {
        font-size: 0.8rem;
        padding: 5px 0;
    }
    
    .separator {
        display: none;
    }
}

@media (max-width: 480px) {
    .footer-bottom {
        padding: 15px 0;
    }
    
    .footer-bottom-content {
        gap: 12px;
    }
    
    .copyright p {
        font-size: 0.8rem;
        margin-bottom: 8px;
    }
    
    .footer-bottom-links {
        gap: 12px;
    }
    
    .footer-bottom-links a {
        font-size: 0.75rem;
    }
}

@media (max-width: 375px) {
    .footer-bottom {
        padding: 12px 0;
    }
    
    .footer-bottom-content {
        gap: 10px;
    }
    
    .copyright p {
        font-size: 0.75rem;
        margin-bottom: 6px;
    }
    
    .footer-bottom-links {
        gap: 10px;
    }
    
    .footer-bottom-links a {
        font-size: 0.7rem;
    }
}





/* ====================================
   PRINT STYLES
   ==================================== */
@media print {
    .hero,
    .carousel-nav,
    .carousel-indicators,
    .btn,
    .cta-section .particles {
        display: none !important;
    }
    
    .container {
        max-width: 100% !important;
        padding: 0 !important;
    }
    
    .section-header h2::after {
        display: none !important;
    }
    
    .benefit-card,
    .service-item,
    .category-card {
        break-inside: avoid;
        box-shadow: none !important;
        border: 1px solid var(--primary-red) !important;
    }
}

/* ====================================
   FORM ELEMENTS RESPONSIVE ENHANCEMENTS
   ==================================== */
@media (max-width: 768px) {
    .form-group input,
    .form-group select,
    .form-group textarea {
        border-radius: 10px;
        border-width: 1.5px;
    }
    
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        transform: translateY(-1px);
        box-shadow: 0 0 0 3px rgba(228, 72, 126, 0.15);
    }
    
    .submit-btn {
        border-radius: 40px;
        letter-spacing: 0.8px;
    }
}

@media (max-width: 480px) {
    .form-group input,
    .form-group select,
    .form-group textarea {
        border-radius: 8px;
        border-width: 1px;
    }
    
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        transform: translateY(0);
        box-shadow: 0 0 0 2px rgba(228, 72, 126, 0.15);
    }
    
    .submit-btn {
        border-radius: 35px;
        letter-spacing: 0.6px;
    }
}

/* ====================================
   ACCESSIBILITY ENHANCEMENTS
   ==================================== */
@media (prefers-reduced-motion: reduce) {
    .hero-background-images .hero-image,
    .benefit-card,
    .service-item,
    .category-card,
    .method-card,
    .btn,
    .carousel-nav,
    .indicator {
        transition: none !important;
        animation: none !important;
    }
    
    .cta-section .particles {
        animation: none !important;
    }
}

@media (prefers-contrast: high) {
    .section-header h2::after {
        background: var(--black);
        height: 5px;
    }
    
    .benefit-card,
    .service-item,
    .category-card {
        border: 2px solid var(--black);
    }
    
    .btn {
        border: 2px solid var(--black);
    }
}

/* ====================================
   WHO WE ARE SECTION
   ==================================== */
/* WHO WE ARE Section */
.who-we-are-section {
    padding: 80px 0;
    background-color: var(--light-red);
    position: relative;
    overflow: visible;
}

/* Critical fix to ensure images are always fully visible */
.who-we-are-section .image-card,
.who-we-are-section .card-image,
.who-we-are-section .card-image img {
    overflow: visible !important;
    height: auto !important;
    min-height: 250px !important;
    background: transparent !important;
}

.who-we-are-section .image-card {
    min-height: 306px !important;
}

.who-we-are-section .card-image {
    min-height: 250px !important;
}

.who-we-are-section .card-image img {
    min-height: 250px !important;
    object-fit: cover !important;
}

.who-we-are-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 32px;
    margin-top: 60px;
    margin-bottom: 36px;
    max-width: 1720px;
    margin-left: auto;
    margin-right: auto;
}

.who-we-are-text-left {
    padding-left: 70px;
    max-width: 520px;
}

.who-we-are-text-right {
    flex: 1;
    padding-right: 70px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}

.section-label {
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    font-size: 1.18rem;
    margin-bottom: 18px;
    font-family: 'Montserrat', sans-serif;
}

.section-title {
    font-size: 2.5rem;
    line-height: 1.08;
    color: var(--black);
    margin-bottom: 0;
    margin-top: 0;
    font-family: 'Georgia', serif;
}

.section-description {
    max-width: 748px;
    font-size: 1.25rem;
    line-height: 1.49;
    color: var(--primary-red);
    margin-top: 18px;
    text-align: center;
    font-family: 'Georgia', serif;
    margin: 0;
}

.image-cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(1, 1fr);
    gap: 80px;
    margin-top: 52px;
    margin-bottom: 0;
    padding-bottom: 32px;
    max-width: 1720px;
    margin-left: auto;
    margin-right: auto;
    overflow: visible;
}

    .image-card {
        background: transparent;
        border-radius: 0.6rem;
        overflow: visible;
        position: relative;
        width: 100%;
        height: auto;
        min-height: 260px;
        flex-shrink: 0;
        box-shadow: none;
        display: flex;
        align-items: flex-end;
        justify-content: center;
    }

    .card-image {
        width: 100%;
        height: auto;
        min-height: 220px;
        overflow: visible;
        border-radius: 0;
    }

    .card-image img {
        width: 100%;
        height: auto;
        min-height: 220px;
        object-fit: cover;
        display: block;
        box-shadow: 0 8px 32px rgba(170,170,170,0.08);
        border-radius: 0;
        overflow: visible;
    }

.card-button {
    position: absolute;
    left: 50%;
    bottom: -30px;
    transform: translateX(-50%);
    background: #fff;
    color: var(--primary-red);
    font-family: 'Georgia', serif;
    font-size: 1.4rem;
    font-weight: 450;
    border: none;
    border-radius: 0.45rem;
    box-shadow: 0 6px 32px rgba(90,120,160,0.09);
    padding: 16px 56px;
    cursor: pointer;
    transition: box-shadow 0.25s, background 0.25s, color 0.25s, padding 0.25s, min-width 0.25s;
    min-width: 240px;
    z-index: 2;
    text-align: center;
    letter-spacing: 0;
    display: flex;
        flex-direction: column;
    align-items: center;
    width: 350px;
}

.button-text {
    font-size: 1.4rem;
    font-weight: 450;
    color: var(--primary-red);
    font-family: 'Georgia', serif;
    text-transform: none;
    letter-spacing: 0;
    text-align: center;
    line-height: 1.2;
    margin: 0;
}

.discover-text {
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    margin-top: 4px;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.22s, max-height 0.22s;
    font-family: 'Georgia', serif;
    font-weight: 450;
    text-align: center;
    line-height: 1.2;
    margin: 0;
}

.card-button:hover {
    background: var(--light-red);
    color: var(--primary-red);
    box-shadow: 0 16px 46px rgba(228, 72, 126, 0.13);
    min-width: 310px;
    padding-left: 32px;
    padding-right: 32px;
    transform: translateX(-50%) translateY(-2px);
}

.card-button:hover .discover-text {
    opacity: 1;
    max-height: 32px;
    margin-top: 8px;
    transition-delay: .05s;
}

.arrow {
    padding-left: 8px;
    font-size: 1.1rem;
    font-family: Arial, sans-serif;
}

/* Responsive Design for Who We Are Section */
@media (max-width: 1600px) {
    .who-we-are-content { 
        gap: 16px; 
    }
    .who-we-are-text-left, 
    .who-we-are-text-right { 
        padding-left: 14px; 
        padding-right: 14px; 
    }
    .section-description { 
        max-width: 580px; 
        font-size: 1.07rem; 
    }
    .image-cards-container { 
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(1, 1fr);
        gap: 80px; 
    }
    .image-card { 
        width: 420px; 
        height: 270px; 
    }
    .card-image img { 
        width: 418px; 
        height: 268px; 
    }
}

@media (max-width: 1200px) {
    .who-we-are-content {
        flex-direction: column;
        align-items: center;
    }
    .who-we-are-text-left, 
    .who-we-are-text-right { 
        display: block; 
        padding: 0; 
        text-align: center; 
    }
    .section-description { 
        margin: 24px auto; 
        text-align: center; 
    }
    .section-title { 
        font-size: 2.7rem; 
    }
    .image-cards-container { 
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(1, 1fr);
        gap: 80px; 
        padding-bottom: 70px;
    }
    .image-card { 
        width: 320px; 
        height: auto; 
        min-height: 220px; 
        flex-shrink: 0;
    }
    .card-image img { 
        width: 320px; 
        height: auto; 
        min-height: 220px; 
    }
    .card-button { 
        min-width: 280px; 
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .who-we-are-section {
        padding: 60px 0;
    }
    
    .who-we-are-content {
        gap: 40px;
        margin-bottom: 60px;
        text-align: center;
    }
    
    .who-we-are-text-left,
    .who-we-are-text-right {
        text-align: center;
    }
    
    .section-title {
        font-size: 36px;
        max-width: 100%;
        margin: 0 auto 20px;
    }
    
    .section-description {
        font-size: 16px;
        max-width: 100%;
    }
    
    .image-cards-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(1, 1fr);
        gap: 80px;
        max-width: 500px;
    }
    
    .card-image {
        height: 250px;
    }
    
    .card-button {
        width: 90%;
        max-width: 300px;
        bottom: -20px;
    }
}

@media (max-width: 680px) {
    .section-title { 
        font-size: 1.45rem; 
    }
    .image-cards-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(1, 1fr);
        gap: 80px;
        padding-bottom: 45px;
    }
    .image-card { 
        width: 200px; 
        min-width: 200px; 
        height: auto; 
        min-height: 140px; 
        flex-shrink: 0;
    }
    .card-image img { 
        width: 200px; 
        height: auto;
        min-height: 140px;
    }
    .card-button { 
        padding: 8px 6vw; 
        font-size: 0.8rem; 
        bottom: -25px;
    }
    .section-description { 
        font-size: 0.9rem; 
    }
}

@media (max-width: 480px) {
    .who-we-are-section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-description {
        font-size: 15px;
    }
    
    .card-image {
        height: 200px;
    }
    
    .card-button {
        padding: 15px;
        width: 95%;
        bottom: -20px;
    }
    
    .button-text {
        font-size: 14px;
    }
    
    .discover-text {
        font-size: 12px;
    }
}

/* Responsive Design for Get in Touch Section */
@media (max-width: 1200px) {
    .contact-content {
        gap: 60px;
        max-width: 1000px;
    }
    
    .contact .section-header h2 {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .contact {
        padding: 100px 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 60px;
        max-width: 800px;
    }
    
    .contact .section-header {
        margin-bottom: 60px;
    }
    
    .contact .section-header h2 {
        font-size: 2.8rem;
    }
    
    .contact .section-header p {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 80px 0;
    }
    
    .contact .section-header h2 {
        font-size: 2.5rem;
    }
    
    .contact .section-header p {
        font-size: 1rem;
        max-width: 500px;
    }
    
    .contact-methods {
        gap: 20px;
    }
    
    .contact-method {
        padding: 25px;
        gap: 15px;
    }
    
    .method-icon {
        width: 50px;
        height: 50px;
    }
    
    .method-icon i {
        font-size: 1.3rem;
    }
    
    .method-details h4 {
        font-size: 1.2rem;
    }
    
    .contact-form {
        padding: 40px 30px;
    }
    
    .form-group {
        margin-bottom: 25px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 16px 18px;
    }
    
    .submit-btn {
        padding: 16px 35px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .contact {
        padding: 60px 0;
    }
    
    .contact .section-header h2 {
        font-size: 2.2rem;
    }
    
    .contact .section-header p {
        font-size: 0.95rem;
    }
    
    .contact-content {
        gap: 50px;
    }
    
    .contact-method {
        padding: 20px;
        gap: 12px;
    }
    
    .method-icon {
        width: 45px;
        height: 45px;
        border-radius: 12px;
    }
    
    .method-icon i {
        font-size: 1.2rem;
    }
    
    .method-details h4 {
        font-size: 1.1rem;
    }
    
    .method-details p {
        font-size: 0.9rem;
    }
    
    .contact-form {
        padding: 30px 25px;
        border-radius: 20px;
    }
    
    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px 16px;
        font-size: 0.95rem;
    }
    
    .submit-btn {
        padding: 15px 30px;
        font-size: 0.95rem;
        gap: 10px;
    }
    
    .submit-btn i {
        font-size: 0.9rem;
    }
}

/* ====================================
   FINAL CRITICAL FIX FOR WHO WE ARE SECTION IMAGES
   ==================================== */
/* Global fix to ensure all images in Who We Are section are fully visible */
@media (max-width: 768px) {
    .who-we-are-section .image-card,
    .who-we-are-section .card-image,
    .who-we-are-section .card-image img {
        overflow: visible !important;
        height: auto !important;
        min-height: 200px !important;
        max-width: 100% !important;
        width: 100% !important;
    }
    
    .who-we-are-section .image-card {
        min-height: 280px !important;
    }
    
    .who-we-are-section .card-image {
        min-height: 200px !important;
    }
    
    .who-we-are-section .card-image img {
        min-height: 200px !important;
    }
    
    /* Ensure container doesn't cut off images */
    .who-we-are-section .image-cards-container {
        overflow: visible !important;
        padding-bottom: 50px !important;
    }
}

/* Additional responsive fixes for larger screens */
@media (min-width: 769px) and (max-width: 1200px) {
    .who-we-are-section .image-card,
    .who-we-are-section .card-image,
    .who-we-are-section .card-image img {
        width: 320px !important;
        min-height: 220px !important;
    }
    
    .who-we-are-section .image-card {
        min-height: 260px !important;
    }
}

/* Override all min-height values for the new larger card sizes */
.who-we-are-section .image-card {
    min-height: 260px !important;
    width: 100% !important;
}

.who-we-are-section .card-image {
    min-height: 220px !important;
    width: 100% !important;
}

.who-we-are-section .card-image img {
    min-height: 220px !important;
    width: 100% !important;
}

@media (max-width: 480px) {
    .who-we-are-section .image-card,
    .who-we-are-section .card-image,
    .who-we-are-section .card-image img {
        overflow: visible !important;
        height: auto !important;
        min-height: 200px !important;
        max-width: 100% !important;
        width: 100% !important;
    }
    
    .who-we-are-section .image-card {
        min-height: 280px !important;
    }
    
    .who-we-are-section .card-image {
        min-height: 200px !important;
    }
    
    .who-we-are-section .card-image img {
        min-height: 200px !important;
    }
    
    /* Ensure container doesn't cut off images */
    .who-we-are-section .image-cards-container {
        overflow: visible !important;
        padding-bottom: 40px !important;
    }
}

/* ====================================
   RESPONSIVE STYLES
   ==================================== */

/* ====================================
   RESPONSIVE STYLES
   ==================================== */

/* Global Responsive Styles */
html {
    font-size: 16px;
}



/* ====================================
   RESPONSIVE BREAKPOINTS
   ==================================== */

/* Large Desktop (1440px and up) */
@media (min-width: 1440px) {
    .container {
        max-width: 1320px;
    }
}

/* Desktop (1200px - 1439px) */
@media (max-width: 1439px) {
    .container {
        max-width: 1140px;
    }
}

/* Small Desktop/Large Tablet (992px - 1199px) */
@media (max-width: 1199px) {
    .container {
        max-width: 960px;
    }
    
    html {
        font-size: 15px;
    }
    
    /* Hero section adjustments */
    .hero-content h1 {
        font-size: var(--h1-size-lg);
    }
    
    /* Section padding adjustments */
    section {
        padding: 70px 0;
    }
}

/* Tablet (768px - 991px) */
@media (max-width: 991px) {
    .container {
        max-width: 720px;
    }
    
    html {
        font-size: 14px;
    }
    

    
    /* Hero section adjustments */
    .hero-content h1 {
        font-size: var(--h1-size-md);
    }
    
    /* Section padding adjustments */
    section {
        padding: 60px 0;
    }
    
    /* Two column layouts become single column */
    .two-column-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Footer adjustments */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .footer-brand {
        grid-column: span 2;
    }
}

/* Mobile (576px - 767px) */
@media (max-width: 767px) {
    .container {
        max-width: 540px;
    }
    
    html {
        font-size: 14px;
    }
    
    /* Hero section adjustments */
    .hero-content h1 {
        font-size: var(--h1-size-sm);
    }
    
    .hero-content p {
        font-size: var(--body-size-md);
    }
    
    /* Section padding adjustments */
    section {
        padding: 50px 0;
    }
    
    /* Section headers */
    .section-header h2 {
        font-size: var(--h2-size-sm);
    }
    
    /* Card grids become single column */
    .card-grid {
        grid-template-columns: 1fr;
    }
    
    /* Footer adjustments */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-brand {
        grid-column: span 1;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* Small Mobile (375px - 575px) */
@media (max-width: 575px) {
    .container {
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }
    
    html {
        font-size: 13px;
    }
    
    /* Hero section adjustments */
    .hero-content h1 {
        font-size: var(--h1-size-xs);
    }
    
    .hero-content p {
        font-size: var(--body-size-sm);
    }
    
    /* Button adjustments */
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    /* Section padding adjustments */
    section {
        padding: 40px 0;
    }
    
    /* Section headers */
    .section-header {
        margin-bottom: 30px;
    }
    
    .section-header h2 {
        font-size: var(--h2-size-xs);
    }
}

/* Extra Small Mobile (320px - 374px) */
@media (max-width: 374px) {
    html {
        font-size: 12px;
    }
    
    /* Button adjustments */
    .btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}

/* ====================================
   RESPONSIVE COMPONENTS
   ==================================== */

/* Forms */
@media (max-width: 767px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group {
        margin-bottom: 15px;
    }
    
    input, textarea, select {
        padding: 10px;
    }
}

/* Cards */
@media (max-width: 767px) {
    .card {
        padding: 20px;
    }
}

/* Tabs */
@media (max-width: 767px) {
    .tab-nav {
        flex-wrap: wrap;
    }
    
    .tab-nav-item {
        flex: 1 1 auto;
        min-width: 120px;
        margin: 5px;
    }
}

/* Product Showcase */
@media (max-width: 991px) {
    .product-showcase {
        flex-direction: column;
    }
    
    .product-image {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .product-details {
        width: 100%;
    }
}

/* Who We Are Section */
@media (max-width: 991px) {
    .who-we-are-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .who-we-are-text-left {
        padding-left: 0;
        max-width: 100%;
    }
    
    .who-we-are-text-right {
        padding-right: 0;
        justify-content: flex-start;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .image-cards-container {
        display: flex;
        flex-direction: column;
        gap: 70px;
        padding-bottom: 60px;
    }
    
    .image-card {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .card-image {
        width: 100%;
        height: auto;
    }
    
    .card-image img {
        width: 100%;
        height: auto;
        object-fit: cover;
        min-height: 300px;
        border-radius: 8px;
    }
    
    .card-button {
        bottom: -25px;
        width: 80%;
    }
}

@media (max-width: 767px) {
    .who-we-are-content {
        margin-top: 40px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .image-cards-container {
        gap: 60px;
        padding-bottom: 50px;
        margin-top: 40px;
    }
    
    .image-card {
        width: 100%;
        max-width: 400px;
    }
    
    .card-image img {
        min-height: 250px;
    }
    
    .card-button {
        width: 90% !important;
        min-width: auto !important;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .who-we-are-content {
        margin-top: 30px;
        margin-bottom: 25px;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-description {
        font-size: 0.95rem;
    }
    
    .image-cards-container {
        gap: 70px;
        padding-bottom: 40px;
        margin-top: 30px;
    }
    
    .image-card {
        max-width: 100%;
    }
    
    .card-image img {
        min-height: 200px;
        border-radius: 6px;
    }
    
    .card-button {
        width: 95% !important;
        padding: 12px 15px !important;
        font-size: 0.9rem !important;
        bottom: -22px;
    }
}

@media (max-width: 375px) {
    .who-we-are-section {
        padding: 40px 0;
    }
    
    .image-cards-container {
        gap: 65px;
        padding-bottom: 30px;
    }
    
    .card-image img {
        min-height: 180px;
    }
    
    .card-button {
        padding: 10px 12px !important;
        font-size: 0.85rem !important;
        bottom: -20px;
    }
    
    .button-text {
        font-size: 0.85rem;
    }
    
    .discover-text {
        font-size: 0.8rem;
    }
}

/* Testimonials */
@media (max-width: 767px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}

/* Stats */
@media (max-width: 767px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Benefits Grid */
@media (max-width: 991px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* Manufacturing Process */
@media (max-width: 991px) {
    .process-row {
        flex-direction: column;
    }
    
    .process-arrow {
        transform: rotate(90deg);
        margin: 10px 0;
    }
}

/* ====================================
   NEW CARDS STYLES (FROM CARDS.HTML)
   ==================================== */
.cards-grid {
    max-width: 1400px;
    margin: 48px auto 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px 0;
    padding: 0 48px;
    position: relative;
}
.card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background: transparent;
    box-sizing: border-box;
    text-align: center;
    min-width: 280px;
    min-height: 260px;
    padding: 0;
    position: relative;
    transition:
        box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
}
.card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 32px rgba(244,94,168,0.17);
    cursor: pointer;
}
.card .icon-box {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: transform 0.35s ease;
    color: var(--primary-pink);
    filter: drop-shadow(0 3px 5px rgba(244,94,168,0.12));
}
.card:hover .icon-box {
    transform: translateY(-6px) scale(1.12);
    filter: drop-shadow(0 5px 9px rgba(244,94,168,0.24));
}
.card .icon-box i,
.card .icon-box svg {
    font-size: 72px;
    pointer-events: none;
}
.card-title {
    font-size: 1.54rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 14px;
    margin-top: 0;
    line-height: 1.15;
    transition: color 0.35s ease, transform 0.35s ease;
}
.card:hover .card-title {
    color: var(--primary-pink);
    transform: scale(1.04);
}
.card-desc {
    font-size: 1.04rem;
    color: var(--text-muted);
    line-height: 1.45;
    margin: 0 auto;
    max-width: 300px;
    transition: color 0.35s ease;
}
.card:hover .card-desc {
    color: #b24e87;
}
/* Responsive adjustments for cards */
@media (max-width: 1200px) {
    .cards-grid {
        grid-template-columns: 1fr 1fr;
        gap: 38px 0;
    }
    .card {
        min-width: 260px;
    }
}
@media (max-width: 700px) {
    .cards-grid {
        grid-template-columns: 1fr;
        gap: 30px 0;
        padding: 0 24px;
    }
    .card {
        min-width: 0;
    }
}

/* ====================================
   ADDITIONAL CSS VARIABLES FOR CARDS
   ==================================== */
:root {
    --text-dark: #181e27;
    --text-muted: #c34988;
}



/* ✅ Why Choose Us - New Styling */
#why-choose {
    padding: 80px 20px;
    background: linear-gradient(135deg, #fef3f7 0%, #ffffff 100%);
}

#why-choose .section-header {
    text-align: center;
    margin-bottom: 60px;
}

#why-choose h2 {
    font-size: 2.8rem;
    color: #000;
    margin-bottom: 15px;
}

#why-choose h2 .highlight {
    color: #7A5096;
}

#why-choose p {
    font-size: 1.1rem;
    color: #333;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ✅ Benefits Grid */
#why-choose .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* ✅ Benefit Cards */
#why-choose .benefit-card {
    background: #fff;
    border-radius: 12px;
    padding: 40px 25px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

#why-choose .benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.15);
}

#why-choose .icon-box {
    width: 72px;
    height: 72px;
    background: #7A5096;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.8rem;
}

#why-choose h3 {
    font-size: 1.4rem;
    color: #000;
    margin-bottom: 12px;
}

#why-choose p {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.5;
    margin: 0;
}

/* ✅ Mobile */
@media (max-width: 768px) {
    #why-choose h2 {
        font-size: 2.2rem;
    }

    #why-choose .benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}



/* ─────────── NEW 3-D COLORFUL CARDS ─────────── */
:root {
  --gummies-orange: #ff9900;
  --softgel-yellow: #ffd700;
}

/* Container wrapper keeps old grid layout */
.product-categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 38px;
  padding: 0 8px;
}

/* Card base */
.product-card {
  width: 410px;
  min-width: 320px;
  max-width: 95vw;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 4px 25px 0 rgba(40,8,70,0.09), 0 1px 10px 0 rgba(255,73,158,0.07);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 28px 36px;
  transition: box-shadow 0.3s cubic-bezier(.23,1,.32,1);
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
  transform-style: preserve-3d;
  will-change: transform;
  cursor: pointer;
}
.product-card.hovered {
  box-shadow: 0 10px 38px rgba(255,111,179,0.18), 0 6px 15px rgba(255,87,142,0.19);
}

/* Icon circle */
.card-image-bg {
  border-radius: 50%;
  width: 110px;
  height: 110px;
  box-shadow: 0 4px 14px rgba(202,80,93,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: box-shadow 0.36s ease, transform 0.38s ease;
  transform-style: preserve-3d;
}
.card-image-bg.gummies   { background: linear-gradient(135deg, var(--gummies-orange) 65%, #ffd1ea 100%); }
.card-image-bg.softgel   { background: linear-gradient(135deg, var(--softgel-yellow) 65%, #f7e7b5 100%); }
.product-card.hovered .card-image-bg {
  transform: translateZ(40px) scale(1.1) rotateY(-10deg);
  box-shadow: 0 12px 22px rgba(202,80,93,0.17);
}
.card-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Title */
.card-title {
  font-size: 2.48rem;
  font-weight: 800;
  text-align: center;
  margin: 4px 0 12px;
  letter-spacing: 0;
  line-height: 1.1;
  transition: color 0.3s ease, transform 0.3s ease, text-shadow 0.3s ease;
  transform-style: preserve-3d;
  z-index: 4;
}
.product-card.gummies .card-title { color: var(--gummies-orange); }
.product-card.softgel .card-title { color: #d1a100; }
.product-card.hovered .card-title {
  text-shadow: 2px 2px 6px rgba(255,200,110,0.3);
  transform: scale(1.06);
}

/* Description */
.card-desc {
  font-size: 1.10rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 18px;
  line-height: 1.4;
  max-width: 335px;
}
.product-card.gummies .card-desc { color: #f2973e; }
.product-card.softgel .card-desc { color: #ddb92a; }
.product-card.hovered .card-desc {
  opacity: 1;
  filter: brightness(1.06);
}

/* Feature list */
.feat-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin-bottom: 36px;
}
.feat-item {
  display: flex;
  align-items: center;
  background: #ffefcf;
  border-radius: 10px;
  box-shadow: 0 1.5px 7px rgba(255,18,105,0.08);
  padding: 13px 18px;
  font-size: 1.08rem;
  font-weight: 600;
  color: #c1872f;
}
.softgel .feat-item {
  background: #fffbe2;
  color: #b99828;
}
.feat-icon {
  margin-right: 13px;
  flex-shrink: 0;
}
.feat-icon-inner {
  width: 20px;
  height: 20px;
  background: #bbbbbb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Button */
.card-btn {
  width: 95%;
  font-size: 1.18rem;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  padding: 16px 0;
  box-shadow: 0 2px 8px rgba(255,73,158,0.10);
  cursor: pointer;
  letter-spacing: 0.03em;
  margin-top: 10px;
  transition: filter 0.22s, transform 0.19s;
}
.product-card.gummies .card-btn { background: var(--gummies-orange); color: #fff; }
.product-card.softgel .card-btn { background: var(--softgel-yellow); color: #664800; }
.card-btn:hover,
.card-btn:focus {
  filter: brightness(0.92);
  transform: translateY(-2px) scale(1.03);
}

/* ===== NEW RESPONSIVE SLIDER STYLES ===== */
.hero-background-images {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    z-index: 1;
}

.hero-image.active {
    opacity: 1;
    z-index: 10;
}

/* Responsive image handling */
@media (max-width: 768px) {
    .hero-image {
        background-size: cover !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
    }
}

/* Carousel navigation */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #7A5096;
    border: 2px solid #7A5096;
    color: white;
    font-size: 1.5rem;
    padding: 15px 20px;
    cursor: pointer;
    z-index: 20;
    transition: all 0.3s ease;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(122, 80, 150, 0.4);
}

.carousel-nav:hover {
    background: #5a3a70;
    border-color: #5a3a70;
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(122, 80, 150, 0.6);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

/* Carousel indicators */
.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 20;
}

.carousel-indicators .indicator {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid #7A5096;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(122, 80, 150, 0.3);
}

.carousel-indicators .indicator.active {
    background: #7A5096;
    border-color: white;
    transform: scale(1.3);
    box-shadow: 0 4px 15px rgba(122, 80, 150, 0.5);
}

.carousel-indicators .indicator:hover {
    background: #7A5096;
    border-color: white;
    transform: scale(1.2);
    box-shadow: 0 3px 12px rgba(122, 80, 150, 0.4);
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .carousel-nav {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        padding: 12px 16px;
        background: #7A5096;
        border: 2px solid #7A5096;
        color: white;
        box-shadow: 0 4px 15px rgba(122, 80, 150, 0.5);
    }
    
    .carousel-nav:hover {
        background: #5a3a70;
        border-color: #5a3a70;
        box-shadow: 0 6px 20px rgba(122, 80, 150, 0.7);
    }
    
    .carousel-prev {
        left: 15px;
    }
    
    .carousel-next {
        right: 15px;
    }
    
    /* Position indicators below the images on mobile */
    .carousel-indicators {
        position: absolute;
        bottom: -60px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 12px;
        z-index: 20;
        background: rgba(255, 255, 255, 0.9);
        padding: 15px 20px;
        border-radius: 25px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }
    
    .carousel-indicators .indicator {
        width: 14px;
        height: 14px;
        background: rgba(122, 80, 150, 0.3);
        border: 2px solid #7A5096;
        box-shadow: 0 2px 8px rgba(122, 80, 150, 0.4);
    }
    
    .carousel-indicators .indicator.active {
        background: #7A5096;
        border-color: white;
        box-shadow: 0 4px 15px rgba(122, 80, 150, 0.6);
    }
    
    .carousel-indicators .indicator:hover {
        background: #7A5096;
        border-color: white;
        box-shadow: 0 3px 12px rgba(122, 80, 150, 0.5);
    }
}
