/**
 * Psychiatrist Website Styles
 * Modern, Clean, Professional Design
 * Mobile-First Responsive
 */

/* ========== CSS Variables ========== */
:root {
    --primary-blue: #73bffd;
    --secondary-green: #A3C9A8;
    --neutral-beige: #F5F3EF;
    --text-dark: #333333;
    --text-light: #666666;
    --white: #FFFFFF;
    --shadow: rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* ========== Reset & Base ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', 'Open Sans', sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ========== Container ========== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== Header & Navigation ========== */
header {
    background: var(--white);
    box-shadow: 0 2px 10px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

/* Hide mobile social icons on desktop */
.mobile-social-icons {
    display: none;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-blue);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

/* CTA Button in Navigation */
.cta-nav-item {
    margin-left: 1rem;
}

.btn-consultation {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-green));
    color: var(--white) !important;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(93, 169, 233, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-consultation::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-green), var(--primary-blue));
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-consultation:hover::before {
    left: 0;
}

.btn-consultation:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(93, 169, 233, 0.4);
}

.btn-consultation::after {
    display: none !important;
}

.btn-consultation i {
    font-size: 1rem;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: 0 5px 20px var(--shadow);
    border-radius: 8px;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    margin-top: 1rem;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 0.8rem 1.5rem;
    color: var(--text-dark);
    border-bottom: 1px solid var(--neutral-beige);
}

.dropdown-menu a:hover {
    background: var(--neutral-beige);
    color: var(--primary-blue);
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: var(--transition);
    border-radius: 2px;
}

/* Hamburger to X Animation */
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ========== Hero Section ========== */
.hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-green) 100%);
    color: var(--white);
    padding: 10rem 0;
    text-align: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(93, 169, 233, 0.85) 0%, rgba(163, 201, 168, 0.85) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary-blue);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--secondary-green);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px var(--shadow);
}

.btn-secondary {
    background: var(--neutral-beige);
    color: var(--text-dark);
    border: 2px solid var(--neutral-beige);
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
}

/* ========== Sections ========== */
section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

/* ========== Cards ========== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 20px var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px var(--shadow);
}

/* Article card clickable elements */
.card a h3:hover {
    color: var(--primary-blue);
}

.card:hover img {
    transform: scale(1.05);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-blue);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(93, 169, 233, 0.1), rgba(163, 201, 168, 0.1));
    border-radius: 50%;
    transition: var(--transition);
}

.card:hover .card-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(93, 169, 233, 0.2), rgba(163, 201, 168, 0.2));
}

.card-icon i {
    font-size: 2.5rem;
    color: var(--primary-blue);
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.card p {
    color: var(--text-light);
    line-height: 1.8;
}

.card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1rem;
}

/* ========== Footer ========== */
footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

/* Footer Contact List with Icons */
.footer-contact-list {
    list-style: none;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.footer-contact-list li i {
    flex-shrink: 0;
    width: 1.2em;
    height: 1.2em;
    margin-top: 0.2rem;
}

.footer-contact-list li i::before {
    filter: brightness(0) saturate(100%) invert(100%);
}

.footer-contact-list li span {
    flex: 1;
    color: rgba(255, 255, 255, 0.9);
}

.footer-section a:hover {
    color: var(--primary-blue);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0 0.5rem;
    position: relative;
}

.footer-bottom a:hover {
    color: var(--primary-blue);
}

.footer-separator {
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom p:first-child {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

@media (max-width: 768px) {
    .footer-bottom p:first-child {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .footer-bottom a {
        display: block;
        padding: 0.5rem 0;
    }
    
    /* Hide separator pipes on mobile */
    .footer-separator {
        display: none;
    }
}

/* ========== Why Consult Grid ========== */
/* 2 columns on desktop, 1 on mobile */
.why-consult-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    max-width: 100%;
}

.why-card {
    padding: 0 !important;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.card-image-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* Removed zoom effect on why-consult images as per client request */
/* .why-card:hover .card-image {
    transform: scale(1.05);
} */

/* Override the general .card:hover img rule for why-consult cards */
.why-card:hover .card-image {
    transform: none !important;
}

.card-image-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-green));
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-image-placeholder span {
    font-size: 3rem;
    color: white;
    opacity: 0.5;
}

.card-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.card-content p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ========== Responsive Design ========== */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        right: -100%;
        top: 100px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: left;
        transition: var(--transition);
        box-shadow: 0 10px 27px var(--shadow);
        padding: 2rem 0;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        align-items: flex-start;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu > li {
        width: 100%;
        padding: 0 2rem;
    }
    
    .nav-menu > li > a {
        display: block;
        padding: 1rem 0;
        border-bottom: 1px solid var(--neutral-beige);
    }
    
    /* Mobile CTA Button */
    .cta-nav-item {
        margin-left: 0;
        width: 100%;
        padding: 1rem 2rem;
    }
    
    .btn-consultation {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        text-align: center;
    }
    
    .btn-consultation span {
        text-align: center;
    }
    
    /* Mobile Social Icons */
    .mobile-social-icons {
        display: flex;
        justify-content: center;
        gap: 1rem;
        padding: 1.5rem 2rem 0.5rem 2rem;
        margin-top: 1rem;
    }
    
    .mobile-social-icons .social-icon {
        width: 45px;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: var(--primary-blue);
        color: white;
        transition: all 0.3s ease;
        text-decoration: none;
    }
    
    .mobile-social-icons .social-icon:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(93, 169, 233, 0.4);
    }
    
    .mobile-social-icons .social-icon i {
        font-size: 1.2rem;
    }
    
    /* Mobile Dropdown */
    .dropdown {
        width: 100%;
    }
    
    .dropdown-toggle {
        width: 100%;
        justify-content: space-between;
        padding: 1rem 0;
        border-bottom: 1px solid var(--neutral-beige);
    }
    
    .dropdown-toggle span {
        transition: transform 0.3s ease;
    }
    
    .dropdown.active .dropdown-toggle span {
        transform: rotate(180deg);
    }
    
    .dropdown-menu {
        position: static;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transform: none;
        box-shadow: none;
        margin-top: 0;
        background: var(--neutral-beige);
        border-radius: 0;
        transition: all 0.3s ease;
    }
    
    .dropdown.active .dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 500px;
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
    }
    
    .dropdown-menu a {
        padding: 0.8rem 1rem;
        font-size: 0.95rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .btn-secondary {
        margin-left: 0;
        margin-top: 1rem;
    }
    
    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }
    
    /* 2 columns grid becomes 1 column on mobile */
    section > .container > div[style*="grid-template-columns: repeat(2, 1fr)"] {
        grid-template-columns: 1fr !important;
    }
    
    .why-consult-grid {
        grid-template-columns: 1fr !important;
    }
}



/* ===================================
   Footer Social Media Section
   =================================== */

.footer-social {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
}

.footer-social h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-green));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.social-icon:hover::before {
    opacity: 1;
}

/* Specific colors for each platform */
.social-icon:has(.fa-facebook-f):hover {
    background: #1877f2;
}

.social-icon:has(.fa-instagram):hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon:has(.fa-twitter):hover {
    background: #1da1f2;
}

.social-icon:has(.fa-linkedin-in):hover {
    background: #0077b5;
}

.social-icon:has(.fa-youtube):hover {
    background: #ff0000;
}

.social-icon:has(.fa-tiktok):hover {
    background: #000000;
}

.social-icon:has(.fa-whatsapp):hover {
    background: #25d366;
}

.social-icon:has(.fa-telegram):hover {
    background: #0088cc;
}

@media (max-width: 768px) {
    .social-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

/* ===================================
   Contact Page Layout
   =================================== */

.form-row-contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-field {
    width: 100%;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px var(--shadow);
    height: 100%;
    min-height: 500px;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 500px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-green));
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-image-placeholder i {
    font-size: 6rem;
    color: white;
    opacity: 0.3;
}

.contact-form-wrapper {
    background: var(--neutral-beige);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 5px 20px var(--shadow);
}

.contact-form .form-field {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Lato', sans-serif;
    transition: all 0.3s ease;
    background: white;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(93, 169, 233, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    font-size: 1.1rem;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

@media (max-width: 768px) {
    .form-row-contact {
        grid-template-columns: 1fr;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-image {
        min-height: 300px;
        order: -1;
    }
    
    .contact-image-placeholder {
        min-height: 300px;
    }
    
    .contact-image-placeholder i {
        font-size: 4rem;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
    }
}


/* ========== Animated About Section ========== */
.about-animated-section {
    padding: 6rem 0;
    background: var(--neutral-beige);
    overflow: hidden;
}

.about-animated-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content {
    position: relative;
    padding-right: 2rem;
}

.about-subtitle {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-blue);
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.about-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.about-circle {
    position: absolute;
    bottom: -50px;
    left: 650px;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-green));
    border-radius: 50%;
    z-index: 1;
    will-change: transform;
}

.about-images {
    position: relative;
    height: 650px;
}

.about-image-large {
    position: absolute;
    top: 0;
    right: 0;
    width: 90%;
    height: 95%;
    border: 20px solid #dbd0c1;
    border-radius: 8px;
    overflow: hidden;
    will-change: transform;
}

.about-image-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image-small {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%) rotate(-2deg);
    width: 50%;
    height: 50%;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    z-index: 10;
    background: white;
    padding: 10px;
}

.about-image-small::before,
.about-image-small::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 30px;
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    z-index: 11;
}

.about-image-small::before {
    top: -15px;
    left: 20%;
    transform: rotate(-5deg);
    background: linear-gradient(135deg, rgba(255,255,255,0.8) 0%, rgba(240,240,240,0.6) 100%);
}

.about-image-small::after {
    top: -15px;
    right: 20%;
    transform: rotate(5deg);
    background: linear-gradient(135deg, rgba(255,255,255,0.8) 0%, rgba(240,240,240,0.6) 100%);
}

.about-image-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: #f0f0f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #999;
}

.image-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Remove old animations */
.about-animated-section.in-view .about-image-large {
    /* Removed animation */
}

.about-animated-section.in-view .about-circle {
    /* Removed animation */
}

@keyframes slideUp {
    /* Removed */
}

@keyframes slideLeft {
    /* Removed */
}

/* Responsive */
@media (max-width: 992px) {
    .about-animated-grid {
        grid-template-columns: 1fr;
        gap: 7rem;
    }
    
    .about-content {
        padding-right: 0;
        text-align: center;
        order: 2;
    }
    
    .about-title {
        font-size: 1.5rem;
    }
    
    .about-circle {
        display: none;
    }
    
    .about-images {
        height: 500px;
        margin: 0 auto;
        max-width: 100%;
        order: 1;
        position: relative;
    }
    
    .about-image-large {
        position: relative;
        width: 100%;
        height: 500px;
        border-width: 15px;
        transform: none !important;
    }
    
    .about-image-small {
        position: absolute;
        width: 60%;
        height: 350px;
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%) rotate(-2deg) !important;
        z-index: 10;
    }
}

@media (max-width: 768px) {
    .about-animated-section {
        padding: 4rem 0;
    }
    
    .about-title {
        font-size: 1rem;
    }
    
    .about-images {
        height: 450px;
    }
    
    .about-image-large {
        height: 450px;
        border-width: 10px;
    }
    
    .about-image-small {
        width: 65%;
        height: 320px;
        bottom: -25px;
    }
    
    .about-image-small::before,
    .about-image-small::after {
        width: 60px;
        height: 25px;
    }
}

@media (max-width: 480px) {
    .about-images {
        height: 400px;
    }
    
    .about-image-large {
        height: 400px;
    }
    
    .about-image-small {
        width: 70%;
        height: 250px;
        bottom: -20px;
    }
}


/* ========== FAQ Section ========== */
.faq-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.faq-image {
    position: sticky;
    top: 2rem;
    height: 600px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.faq-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: var(--primary-blue);
    box-shadow: 0 4px 12px rgba(93, 169, 233, 0.2);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: white;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question span {
    flex: 1;
}

.faq-question i {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--primary-blue);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

/* FAQ Mobile Responsive */
@media (max-width: 992px) {
    .faq-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .faq-image {
        position: relative;
        height: 400px;
        order: -1;
    }
}

@media (max-width: 768px) {
    .faq-image {
        height: 300px;
        margin-bottom: 1rem;
    }
    
    .faq-question {
        padding: 1.2rem;
        font-size: 1rem;
    }
    
    .faq-answer p {
        padding: 0 1.2rem 1.2rem;
        font-size: 0.95rem;
    }
}
