/* ===== VARIABLES ===== */
:root {
    --primary: #0066b2;
    --secondary: #ff8c42;
    --dark: #1e2a41;
    --light: #f4f7fc;
    --gray: #6c757d;
    --white: #fff;
    --shadow: 0 10px 30px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== UTILITY CLASSES ===== */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 600;
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: #00509e;
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--white);
}

.btn-secondary:hover {
    background: #e07b3a;
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

/* ===== FLOATING BUTTONS ===== */
.floating-btn {
    position: fixed;
    bottom: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 999;
    transition: var(--transition);
    text-decoration: none;
}

.floating-btn.call {
    left: 30px;
    background: #28a745;
    animation: pulse-shake-call 2.5s infinite;
}

.floating-btn.whatsapp {
    right: 30px;
    background: #25d366;
    animation: pulse-shake-wa 2.5s infinite;
}

.floating-btn:hover {
    animation-play-state: paused;
    transform: scale(1.1);
}

@keyframes pulse-shake-call {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7); }
    10% { transform: scale(1.1) rotate(-10deg); }
    20% { transform: scale(1.1) rotate(10deg); }
    30% { transform: scale(1.1) rotate(-10deg); }
    40% { transform: scale(1.1) rotate(10deg); }
    50% { transform: scale(1) rotate(0deg); box-shadow: 0 0 0 15px rgba(40, 167, 69, 0); }
    100% { transform: scale(1) rotate(0deg); box-shadow: 0 0 0 0 rgba(40, 167, 69, 0); }
}

@keyframes pulse-shake-wa {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    10% { transform: scale(1.1) rotate(-10deg); }
    20% { transform: scale(1.1) rotate(10deg); }
    30% { transform: scale(1.1) rotate(-10deg); }
    40% { transform: scale(1.1) rotate(10deg); }
    50% { transform: scale(1) rotate(0deg); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { transform: scale(1) rotate(0deg); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ===== NAVBAR ===== */
.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    background: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu li {
    list-style: none;
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--primary);
}

/* Dropdown */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: var(--shadow);
    border-radius: 8px;
    padding: 10px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-menu li {
    padding: 8px 20px;
}

.dropdown-menu a {
    color: var(--dark);
}

.dropdown-menu a:hover {
    color: var(--primary);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    margin: 3px 0;
    transition: var(--transition);
}

/* ===== HERO SLIDER ===== */
.hero-slider {
    position: relative;
    height: 80vh;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.slide.active {
    opacity: 1;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
}

.slide-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.slide-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.2s both;
}

.slide-content .btn {
    margin: 0 10px;
    animation: fadeInUp 1s ease 0.4s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
}

.slider-nav button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: var(--transition);
}

.slider-nav button.active {
    background: var(--white);
    transform: scale(1.2);
}

/* ===== PAGE HEADER ===== */
.page-header {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5); /* Overlay to make text readable */
}

.page-header-content {
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.page-header-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.page-header-content p {
    font-size: 1.2rem;
    animation: fadeInUp 1s ease 0.2s both;
}

@media (max-width: 768px) {
    .page-header {
        height: 60vh;
    }
    .page-header-content h1 {
        font-size: 2rem;
    }
    .page-header-content p {
        font-size: 1rem;
    }
}

/* ===== CARDS ===== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-10px);
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content {
    padding: 20px;
}

.card-content h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.card-content p {
    color: var(--gray);
    margin-bottom: 15px;
}

.card-content .btn {
    padding: 8px 20px;
}

/* ===== DESTINATION CARDS ===== */
.destination-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 300px;
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.destination-card:hover img {
    transform: scale(1.1);
}

.destination-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: var(--white);
    padding: 20px;
}

.destination-info h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.destination-info p {
    font-size: 0.9rem;
}

/* ===== GALLERY ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* ===== WHY CHOOSE US ===== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.why-item {
    padding: 30px;
    background: var(--light);
    border-radius: 15px;
    transition: var(--transition);
}

.why-item:hover {
    background: var(--primary);
    color: var(--white);
}

.why-item i {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.why-item:hover i {
    color: var(--white);
}

.why-item h3 {
    margin-bottom: 10px;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--primary), #003366);
    color: var(--white);
    text-align: center;
    padding: 80px 0;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.cta-buttons .btn {
    background: var(--white);
    color: var(--primary);
}

.cta-buttons .btn:hover {
    background: var(--secondary);
    color: var(--white);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-col p {
    color: #ccc;
    margin-bottom: 10px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    background: rgba(255,255,255,0.1);
    font-size: 1.2rem;
    transition: var(--transition);
    text-decoration: none;
}

/* Base brand colors for social icons */
.social-links a .fa-facebook-f { color: #1877f2; }
.social-links a .fa-twitter { color: #1da1f2; }
.social-links a .fa-instagram { color: #e1306c; }
.social-links a .fa-linkedin-in { color: #0077b5; }

.social-links a:hover {
    transform: translateY(-5px);
    background: var(--white);
    box-shadow: 0 5px 15px rgba(255,255,255,0.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #ccc;
    font-size: 0.9rem;
}

/* ===== RESPONSIVE STYLES – FULL MOBILE OPTIMIZATION ===== */

/* Tablet & small desktop (992px and below) */
@media (max-width: 992px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        gap: 15px;
        box-shadow: var(--shadow);
        transform: translateY(-150%);
        opacity: 0;
        transition: var(--transition);
        pointer-events: none;
        max-height: 80vh; /* Prevent menu from going off-screen */
        overflow-y: auto; /* Allow scrolling if many items */
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    /* Bubble menu items – ensure all links including dropdown toggle are visible */
    .nav-menu a {
        display: inline-block;
        padding: 14px 30px; /* Slightly larger for easier tapping */
        background: var(--light);
        border-radius: 60px;
        font-size: 1.1rem;
        font-weight: 500;
        color: var(--dark);
        box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        transition: all 0.2s ease;
        width: auto;
        min-width: 200px;
        text-align: center;
        cursor: pointer;
    }

    .nav-menu a:hover {
        background: var(--primary);
        color: var(--white);
        transform: translateY(-3px);
        box-shadow: 0 8px 15px rgba(0,102,178,0.2);
    }

    /* Dropdown on mobile – ensure the toggle has a visual indicator */
    .dropdown > a i {
        transition: transform 0.3s;
    }
    .dropdown.active > a i {
        transform: rotate(180deg);
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        padding: 0;
        display: none;
        background: transparent;
        margin-top: 10px;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-menu li {
        padding: 5px 0;
    }

    .dropdown-menu a {
        background: #e9ecef;
        padding: 12px 25px;
        min-width: 180px;
        font-size: 1rem;
    }

    .dropdown-menu a:hover {
        background: var(--secondary);
        color: white;
    }

    .slide-content h1 {
        font-size: 2.5rem;
    }
}

/* Mobile landscape & small tablets (768px and below) */
@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-slider {
        height: 60vh;
    }

    .slide-content h1 {
        font-size: 2rem;
    }

    .slide-content p {
        font-size: 1rem;
    }

    .slide-content .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .cards-grid {
        gap: 20px;
    }

    .card img {
        height: 180px;
    }

    .destination-card {
        height: 250px;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }

    .gallery-item {
        height: 200px;
    }

    .why-grid {
        gap: 20px;
    }

    .why-item {
        padding: 20px;
    }

    .why-item i {
        font-size: 2.5rem;
    }

    .cta-section {
        padding: 60px 0;
    }

    .cta-section h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .cta-buttons .btn {
        width: 80%;
        max-width: 300px;
    }

    .footer-grid {
        gap: 30px;
    }

    /* ===== CONTACT PAGE – STACK FORM & MAP ON MOBILE ===== */
    /* Method 1: If you added class="contact-grid" to the wrapping div */
    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    /* Method 2: Fallback – target the most common inline grid style */
    .section .container > div[style*="display: grid"] {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
}

/* Extra small devices (576px and below) – phones */
@media (max-width: 576px) {
    .container {
        width: 95%;
    }

    .section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-slider {
        height: 50vh;
    }

    .page-header {
        height: 50vh;
    }

    .slide-content h1,
    .page-header-content h1 {
        font-size: 1.8rem;
    }

    .slide-content p,
    .page-header-content p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .slide-content .btn {
        display: block;
        width: 80%;
        margin: 10px auto;
    }

    .slider-nav {
        bottom: 15px;
    }

    .slider-nav button {
        width: 8px;
        height: 8px;
    }

    .cards-grid {
        grid-template-columns: 1fr; /* Single column on very small screens */
        gap: 20px;
    }

    .card img {
        height: 160px;
    }

    .destination-card {
        height: 220px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        height: 180px;
    }

    .why-grid {
        grid-template-columns: 1fr 1fr; /* Two columns if space permits */
        gap: 15px;
    }

    .why-item {
        padding: 15px;
    }

    .why-item i {
        font-size: 2rem;
    }

    .why-item h3 {
        font-size: 1rem;
    }

    .cta-section {
        padding: 50px 0;
    }

    .cta-section h2 {
        font-size: 1.6rem;
    }

    .cta-section p {
        font-size: 1rem;
    }

    .cta-buttons .btn {
        width: 90%;
        padding: 12px 20px;
    }

    /* Footer stacking */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    /* Floating buttons adjustment */
    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        bottom: 20px;
    }

    .floating-btn.call {
        left: 15px;
    }

    .floating-btn.whatsapp {
        right: 15px;
    }
}

/* Very small devices (400px and below) */
@media (max-width: 400px) {
    .section-title {
        font-size: 1.5rem;
    }

    .why-grid {
        grid-template-columns: 1fr; /* Stack them */
    }

    .nav-menu a {
        min-width: 160px;
        padding: 10px 20px;
        font-size: 1rem;
    }

    .dropdown-menu a {
        min-width: 140px;
    }
}

/* Touch-friendly adjustments */
@media (hover: none) and (pointer: coarse) {
    .btn:hover,
    .card:hover,
    .floating-btn:hover {
        transform: none; /* Disable hover effects on touch devices */
    }

    .nav-menu a:hover {
        transform: none;
    }
}


/* Ensure dropdown links are clickable on mobile */
@media (max-width: 992px) {
    .dropdown-menu a {
        pointer-events: auto;
        position: relative;
        z-index: 1001;
    }
}


.cards-grid .card {
    position: relative;
}


/* Airline partner logo overlay */
.partner-logo {
    position: absolute;
    bottom: 15px;      /* Slightly more spacing */
    left: 15px;
    background: rgba(255, 255, 255, 0.95); /* Clean white background */
    padding: 8px 12px;
    border-radius: 12px;   /* Modern rounded corners */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15); /* Soft premium shadow */
    backdrop-filter: blur(5px); /* Modern glass effect */
    transition: var(--transition);
}

.card:hover .partner-logo {
    transform: scale(1.05); /* Subtle hover lift */
}

.partner-logo img {
    width: 90px;        /* Increased size as requested */
    height: 45px;       /* Fixed height for consistency */
    object-fit: contain; /* Maintain ratio */
    display: block;
}


/* Sirf PIA logo ke liye */
#pia-logo {
    border: 1px solid rgba(0, 100, 0, 0.2);
    border-radius: 10px;
    padding: 10px;
    background: #fff;
}
#pia-logo:hover {
    transform: scale(1.1);
}

/* Sirf Emirates logo ke liye */
#emirates-logo {
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.1));
    padding: 10px;
}
#emirates-logo:hover {
    transform: scale(1.1);
}

/* Sirf Air India logo ke liye */
#airindia-logo {
    opacity: 1;
    padding: 10px;
}
#airindia-logo:hover {
    transform: scale(1.1);
}

/* Sirf Saudia logo ke liye */
#saudia-logo {
    background-color: #fff;
    padding: 10px;
    border-radius: 10px;
}
#saudia-logo:hover {
    transform: scale(1.1);
}


/* Airline Logo Container */
.airline-logo-pic {
    width: 100%;
    height: 1000px;           /* Desktop ke liye height */
    overflow: hidden;
    border-radius: 15px;     /* Rounded corners */
    background: #f8f8f8;     /* Fallback background */
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Image Styling */
.airline-logo-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;       /* Cover size */
    display: block;
    transition: transform 0.3s ease;
}

/* Hover Effect */
.airline-logo-pic:hover img {
    transform: scale(1.05);
}

/* ===== Mobile Responsive ===== */

/* Tablet (768px and below) */
@media (max-width: 768px) {
    .airline-logo-pic {
        height: 200px;       /* Tablet pe chhoti height */
        border-radius: 12px;
    }
}

/* Mobile (576px and below) */
@media (max-width: 576px) {
    .airline-logo-pic {
        height: 180px;       /* Mobile pe aur chhoti */
        border-radius: 10px;
    }
}

/* Small Mobile (400px and below) */
@media (max-width: 400px) {
    .airline-logo-pic {
        height: 150px;       /* Chhoti screens ke liye */
        border-radius: 8px;
    }
}

/* Hotel description styling */
.card-content p:last-of-type {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 15px;
    min-height: 45px; /* Har card mein equal height ke liye */
}

@media (max-width: 576px) {
    .card-content p:last-of-type {
        font-size: 0.85rem;
        min-height: 40px;
    }
}

/* ===== TEAM SECTION ===== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-img {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-card:hover .team-img img {
    transform: scale(1.05);
}

.team-info {
    padding: 20px;
}

.team-info h3 {
    margin-bottom: 5px;
    font-size: 1.3rem;
}

.team-role {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 10px;
}

.team-info p {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.team-social a {
    width: 35px;
    height: 35px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: var(--transition);
}

.team-social a:hover {
    background: var(--primary);
    color: var(--white);
}

/* ===== TIMELINE ===== */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 40px auto 0;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: var(--primary);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.timeline-item:nth-child(even) {
    justify-content: flex-start;
}

.timeline-year {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: 600;
    z-index: 1;
}

.timeline-content {
    width: 45%;
    background: var(--white);
    padding: 20px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    position: relative;
}

.timeline-content h3 {
    margin-bottom: 10px;
    color: var(--primary);
}

.timeline-content p {
    color: var(--gray);
}

/* Timeline responsive */
@media (max-width: 768px) {
    .timeline::before {
        left: 30px;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        justify-content: flex-end;
    }

    .timeline-year {
        left: 30px;
        transform: translateX(0);
    }

    .timeline-content {
        width: calc(100% - 80px);
        margin-left: 80px;
    }
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-rating {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-text {
    font-style: italic;
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.testimonial-author p {
    color: var(--gray);
    font-size: 0.85rem;
}

/* ===== CORE VALUES ===== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.value-item:hover {
    background: var(--primary);
    color: var(--white);
}

.value-item i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 15px;
    transition: var(--transition);
}

.value-item:hover i {
    color: var(--white);
}

.value-item h3 {
    margin-bottom: 10px;
}

.value-item p {
    color: var(--gray);
    transition: var(--transition);
}

.value-item:hover p {
    color: rgba(255, 255, 255, 0.9);
}