* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #E5B649;
    --burgundy: #6B2E2E;
    --dark-burgundy: #4A1F1F;
    --light-gold: #F0CC70;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --text-dark: #333333;
    --text-light: #666666;
}

body {
    /* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
    font-family: 'roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==================== CREATIVE NAVIGATION ==================== */
.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(107, 46, 46, 0.1);
    transition: all 0.4s ease;
}

.navbar.scrolled .nav-background {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 20px;
    position: relative;
    z-index: 2;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.brand-icon {
    width: 40px;
    height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    position: relative;
}

.icon-line {
    height: 3px;
    background: linear-gradient(90deg, var(--burgundy), var(--gold));
    border-radius: 2px;
    transition: all 0.3s ease;
}

.icon-line:nth-child(1) {
    width: 100%;
}

.icon-line:nth-child(2) {
    width: 70%;
}

.icon-line:nth-child(3) {
    width: 85%;
}

.nav-brand:hover .icon-line:nth-child(1) {
    width: 85%;
}

.nav-brand:hover .icon-line:nth-child(2) {
    width: 100%;
}

.nav-brand:hover .icon-line:nth-child(3) {
    width: 70%;
}

.nav-brand h2 {
    color: var(--burgundy);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    display: inline-block;
    letter-spacing: 0.3px;
}

.nav-link span {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--burgundy), var(--gold));
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

.nav-link:hover span {
    color: var(--burgundy);
}

.nav-cta {
    display: flex;
    align-items: center;
}

.cta-btn {
    padding: 12px 30px;
    background: var(--burgundy);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid var(--burgundy);
}

/* .cta-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--gold);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
} */

/* .cta-btn:hover::before {
    width: 300px;
    height: 300px;
} */

.cta-btn:hover {
    background-color: var(--gold);
    color: var(--text-dark);
    border-color: var(--dark-burgundy);
}

.cta-btn span {
    position: relative;
    z-index: 1;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--burgundy);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* ==================== CREATIVE HERO SLIDER ==================== */
.hero-slider {
    margin-top: 80px;
    height: calc(100vh - 80px);
    min-height: 600px;
    position: relative;
    overflow: hidden;
}

.slider-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: var(--burgundy);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--gold);
    bottom: -100px;
    right: -100px;
    animation-delay: 7s;
}

.shape-3 {
    width: 350px;
    height: 350px;
    background: var(--dark-burgundy);
    top: 50%;
    right: 10%;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(50px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-30px, 30px) scale(0.9);
    }
}

.slider-container {
    position: relative;
    height: 100%;
    z-index: 2;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-content {
    max-width: 1200px;
    padding: 0 40px;
    position: relative;
}

.slide-number {
    position: absolute;
    top: -80px;
    left: 40px;
    font-size: 10rem;
    font-weight: 900;
    color: rgba(107, 46, 46, 0.05);
    line-height: 1;
    user-select: none;
}

.content-wrapper {
    position: relative;
    z-index: 2;
}

.slide-title {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
}

.title-line {
    display: block;
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--burgundy);
    line-height: 1.1;
    letter-spacing: -2px;
    opacity: 0;
    transform: translateY(50px);
    animation: slideUp 0.8s ease forwards;
}

.slide.active .title-line:nth-child(1) {
    animation-delay: 0.2s;
}

.slide.active .title-line:nth-child(2) {
    animation-delay: 0.4s;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-description {
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 600px;
    opacity: 0;
    transform: translateY(30px);
}

.slide.active .slide-description {
    animation: slideUp 0.8s ease forwards 0.6s;
}

.slide-actions {
    display: flex;
    gap: 20px;
    opacity: 0;
    transform: translateY(30px);
}

.slide.active .slide-actions {
    animation: slideUp 0.8s ease forwards 0.8s;
}

.cta-primary,
.cta-secondary {
    padding: 18px 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-primary {
    background: var(--burgundy);
    color: var(--white);
    border: 2px solid var(--burgundy);
}

/* .cta-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--dark-burgundy);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
} */

/* .cta-primary:hover::before {
    width: 400px;
    height: 400px;
} */

.cta-primary:hover {
    color: var(--burgundy);
    background-color: var(--gold);   
    transform: translate(-1%, -1%);
    transition: width 0.6s ease, height 0.6s ease;
}

.cta-primary span,
.cta-secondary span {
    position: relative;
    z-index: 1;
}

.cta-secondary {
    background: transparent;
    color: var(--burgundy);
    border: 2px solid var(--burgundy);
}

.cta-secondary:hover {
    background: var(--burgundy);
    color: var(--white);
}

.slider-controls {
    position: absolute;
    bottom: 60px;
    width: 100%;
    z-index: 3;
    padding: 0 40px;
}

.slider-nav {
    display: flex;
    gap: 15px;
    position: absolute;
    left: 40px;
    bottom: 0;
}

.nav-arrow {
    width: 60px;
    height: 60px;
    border: 2px solid var(--burgundy);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--burgundy);
}

.nav-arrow:hover {
    background: var(--burgundy);
    color: var(--white);
    transform: scale(1.1);
}

.nav-arrow svg {
    width: 24px;
    height: 24px;
}

.slider-pagination {
    position: absolute;
    right: 40px;
    bottom: 0;
}

.pagination-wrapper {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.pagination-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(107, 46, 46, 0.3);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.pagination-dot.active {
    background: var(--burgundy);
    border-color: var(--gold);
    transform: scale(1.3);
}

.pagination-dot:hover {
    transform: scale(1.2);
}

.pagination-progress {
    width: 100%;
    height: 3px;
    background: rgba(107, 46, 46, 0.2);
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--burgundy), var(--gold));
    width: 0;
    transition: width 0.1s linear;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--burgundy);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    z-index: 3;
    opacity: 0.7;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: linear-gradient(180deg, var(--burgundy), transparent);
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--burgundy);
    border-bottom: 2px solid var(--burgundy);
    transform: translateX(-50%) rotate(45deg);
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* ==================== CREATIVE SERVICES SECTION ==================== */
.services {
    /* padding: 50px 0; */
    background: linear-gradient(180deg, #ffffff 0%, #f8f8f8 100%);
    position: relative;
    overflow: visible;
}

.services-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(107, 46, 46, 0.03), rgba(229, 182, 73, 0.05));
    animation: pulse 15s infinite ease-in-out;
}

.circle-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
}

.circle-2 {
    width: 300px;
    height: 300px;
    bottom: 100px;
    left: -50px;
    animation-delay: 7s;
}

.bg-line {
    position: absolute;
    width: 2px;
    height: 200px;
    background: linear-gradient(180deg, transparent, rgba(229, 182, 73, 0.2), transparent);
    animation: lineMove 10s infinite ease-in-out;
}

.line-1 {
    top: 10%;
    left: 20%;
    transform: rotate(15deg);
}

.line-2 {
    bottom: 10%;
    right: 15%;
    transform: rotate(-20deg);
    animation-delay: 5s;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1) translate(0, 0);
        opacity: 1;
    }
    50% {
        transform: scale(1.2) translate(20px, -20px);
        opacity: 0.8;
    }
}

@keyframes lineMove {
    0%, 100% {
        transform: translateY(0) rotate(15deg);
    }
    50% {
        transform: translateY(-50px) rotate(15deg);
    }
}

.services .container {
    position: relative;
    z-index: 2;
    overflow: visible;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

.section-label {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #6B2E2E, #E5B649);
    color: #FFFFFF;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    /* margin-bottom: 100px; */
}

.section-header h2 {
    font-size: 3.5rem;
    color: #333333;
    /* margin-bottom: 20px; */
    font-weight: 800;
    letter-spacing: -1px;
}

.section-header .highlight {
    color: #6B2E2E;
    position: relative;
    display: inline-block;
}

.section-header .highlight::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    height: 15px;
    background: linear-gradient(90deg, transparent, #E5B649, transparent);
    opacity: 0.3;
    z-index: -1;
}

.section-header p {
    font-size: 1.2rem;
    color: #666666;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
    perspective: 1000px;
    overflow: visible;
}

/* Service Card */
.service-card {
    perspective: 1000px;
    height: 450px;
    cursor: pointer;
    position: relative;
    transform-style: preserve-3d;
}

/* Cards 4 and 5 span 1.5 columns on desktop */
.service-card-wide {
    grid-column: span 1.5;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    transform-origin: center center;
}

.service-card:hover .card-inner {
    transform: rotateY(180deg);
}

.card-front {
    background: #FFFFFF;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(107, 46, 46, 0.1);
    position: relative;
    overflow: hidden;
}

.card-front::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #6B2E2E, #E5B649);
}

.card-back {
    background: linear-gradient(135deg, #6B2E2E 0%, #4A1F1F 100%);
    color: #FFFFFF;
    transform: rotateY(180deg);
    /* box-shadow: 0 15px 50px rgba(107, 46, 46, 0.3); */
}

/* Card Header */
.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
}

.service-number {
    font-size: 4rem;
    font-weight: 900;
    color: rgba(107, 46, 46, 0.08);
    line-height: 1;
    letter-spacing: -2px;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6B2E2E, #E5B649);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-5deg);
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: rotate(5deg) scale(1.1);
}

.service-icon svg {
    width: 30px;
    height: 30px;
    stroke: #FFFFFF;
}

/* Card Content */
.card-front h3 {
    font-size: 1.6rem;
    color: #6B2E2E;
    margin-bottom: 15px;
    font-weight: 700;
}

.card-preview {
    color: #666666;
    line-height: 1.7;
    flex-grow: 1;
    font-size: 1rem;
}

.card-action {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #6B2E2E;
    font-weight: 600;
    margin-top: 20px;
    transition: gap 0.3s ease;
}

.service-card:hover .card-action {
    gap: 15px;
}

.card-action svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.service-card:hover .card-action svg {
    transform: translateX(5px);
}

/* Card Back Content */
.card-back h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #E5B649;
}

.card-back p {
    line-height: 1.8;
    margin-bottom: 25px;
    opacity: 0.95;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-top: auto;
}

.service-features li {
    padding: 12px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.service-features li::before {
    content: '✓';
    width: 24px;
    height: 24px;
    background: #E5B649;
    color: #4A1F1F;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

/* Services CTA */
.services-cta {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(107, 46, 46, 0.85), rgba(74, 31, 31, 0.9));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(107, 46, 46, 0.25), 
                0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.services-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 90%);
    animation: rotate 15s linear infinite;
    z-index: 0;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.services-cta p {
    font-size: 1.8rem;
    color: #FFFFFF;
    margin-bottom: 30px;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.services-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 45px;
    background: #E5B649;
    color: #4A1F1F;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(229, 182, 73, 0.3);
}

.services-btn:hover {
    background: #F0CC70;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(229, 182, 73, 0.4);
}

.services-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.services-btn:hover svg {
    transform: translateX(5px);
}

/* ==================== RESPONSIVE DESIGN ==================== */

/* Large Tablets and Small Desktops (1200px and below) */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 25px;
    }
    
    /* First 3 cards: 2 in first row, 1 full-width in second */
    .service-card:nth-child(3) {
        grid-column: span 2 !important;
    }
    
    /* Cards 4 and 5: each takes full row */
    .service-card-wide {
        grid-column: span 2 !important;
    }
    
    .service-card {
        height: 420px;
    }
    
    .section-header h2 {
        font-size: 3rem;
    }
}

/* Tablets (968px and below) */
@media (max-width: 968px) {
    .services {
        padding: 80px 0;
    }
    
    .section-header {
        margin-bottom: 50px;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .section-header p {
        font-size: 1.1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 25px;
    }
    
    /* All cards take full width on tablet */
    .service-card,
    .service-card-wide,
    .service-card:nth-child(3) {
        height: 400px;
        grid-column: span 1 !important;
    }
    
    .card-front,
    .card-back {
        padding: 35px 28px;
    }
    
    .service-number {
        font-size: 3.5rem;
    }
    
    .service-icon {
        width: 55px;
        height: 55px;
    }
    
    .service-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .card-front h3 {
        font-size: 1.5rem;
    }
    
    .card-back h3 {
        font-size: 1.6rem;
    }
    
    .card-preview,
    .card-back p {
        font-size: 0.98rem;
    }
    
    .services-cta {
        padding: 45px 35px;
    }
    
    .services-cta p {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }
    
    .services-btn {
        padding: 16px 40px;
        font-size: 1.05rem;
    }
    
    .circle-1,
    .circle-2 {
        width: 250px;
        height: 250px;
    }
    
    /* Disable hover flip on tablets - tap to flip instead */
    .service-card:hover .card-inner {
        transform: none;
    }
}

/* Mobile Landscape and Small Tablets (768px and below) */
@media (max-width: 768px) {
    .services {
        padding: 70px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .section-label {
        font-size: 0.8rem;
        padding: 7px 18px;
    }
    
    .service-card {
        height: 380px;
    }
    
    .card-front,
    .card-back {
        padding: 30px 25px;
    }
    
    .card-header {
        margin-bottom: 25px;
    }
    
    .service-number {
        font-size: 3rem;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
    }
    
    .service-icon svg {
        width: 26px;
        height: 26px;
    }
    
    .card-front h3 {
        font-size: 1.4rem;
        margin-bottom: 12px;
    }
    
    .card-back h3 {
        font-size: 1.5rem;
        margin-bottom: 18px;
    }
    
    .services-cta {
        padding: 40px 30px;
    }
    
    .services-cta p {
        font-size: 1.4rem;
        margin-bottom: 22px;
    }
}

/* Mobile Phones (640px and below) */
@media (max-width: 640px) {
    .services {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 35px;
    }
    
    .section-header h2 {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .section-label {
        font-size: 0.75rem;
        padding: 6px 16px;
        letter-spacing: 1.5px;
    }
    
    .services-grid {
        gap: 20px;
    }
    
    .service-card {
        height: 360px;
    }
    
    .card-front,
    .card-back {
        padding: 25px 22px;
    }
    
    .card-header {
        margin-bottom: 22px;
    }
    
    .service-number {
        font-size: 2.8rem;
    }
    
    .service-icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
    }
    
    .service-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .card-front h3 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    
    .card-back h3 {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }
    
    .card-preview,
    .card-back p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .card-action {
        margin-top: 18px;
        font-size: 0.95rem;
    }
    
    .service-features li {
        padding: 10px 0;
        font-size: 0.95rem;
        gap: 8px;
    }
    
    .service-features li::before {
        width: 22px;
        height: 22px;
        font-size: 0.85rem;
    }
    
    .services-cta {
        padding: 35px 25px;
        border-radius: 15px;
    }
    
    .services-cta p {
        font-size: 1.25rem;
        margin-bottom: 20px;
    }
    
    .services-btn {
        padding: 15px 35px;
        font-size: 1rem;
        gap: 12px;
    }
    
    .circle-1,
    .circle-2 {
        width: 180px;
        height: 180px;
    }
}

/* Very Small Phones (480px and below) */
@media (max-width: 480px) {
    .services {
        padding: 50px 0;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .section-header p {
        font-size: 0.95rem;
    }
    
    .services-grid {
        gap: 18px;
    }
    
    .service-card {
        height: 350px;
    }
    
    .card-front,
    .card-back {
        padding: 22px 20px;
        border-radius: 15px;
    }
    
    .card-header {
        margin-bottom: 20px;
    }
    
    .service-number {
        font-size: 2.5rem;
    }
    
    .service-icon {
        width: 45px;
        height: 45px;
        border-radius: 10px;
    }
    
    .service-icon svg {
        width: 22px;
        height: 22px;
    }
    
    .card-front h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .card-back h3 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .card-preview,
    .card-back p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .card-action {
        margin-top: 15px;
        font-size: 0.9rem;
    }
    
    .card-action svg {
        width: 18px;
        height: 18px;
    }
    
    .service-features li {
        padding: 9px 0;
        font-size: 0.9rem;
        gap: 6px;
    }
    
    .service-features li::before {
        width: 20px;
        height: 20px;
        font-size: 0.8rem;
    }
    
    .services-cta {
        padding: 30px 20px;
    }
    
    .services-cta p {
        font-size: 1.15rem;
        margin-bottom: 18px;
    }
    
    .services-btn {
        padding: 14px 30px;
        font-size: 0.95rem;
        gap: 10px;
    }
    
    .services-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .circle-1,
    .circle-2 {
        width: 150px;
        height: 150px;
    }
    
    .bg-line {
        height: 150px;
    }
}

/* Extra Small Devices (380px and below) */
@media (max-width: 380px) {
    .services {
        padding: 45px 0;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .section-header .highlight::after {
        height: 12px;
        bottom: 8px;
    }
    
    .service-card {
        height: 340px;
    }
    
    .card-front,
    .card-back {
        padding: 20px 18px;
    }
    
    .service-number {
        font-size: 2.2rem;
    }
    
    .service-icon {
        width: 42px;
        height: 42px;
    }
    
    .card-front h3 {
        font-size: 1.15rem;
    }
    
    .card-back h3 {
        font-size: 1.25rem;
    }
    
    .services-cta p {
        font-size: 1.1rem;
    }
    
    .services-btn {
        padding: 13px 28px;
        font-size: 0.9rem;
    }
}
/* ==================== ABOUT SECTION ==================== */
.about {
    padding: 80px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--burgundy);
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 10px;
}

.stat-item p {
    color: var(--text-dark);
    font-weight: 600;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--gold) 100%);
    border-radius: 10px;
}

.about-image {
    position: relative;
    height: 500px;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 30px;
    right: 30px;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--burgundy), var(--gold));
    border-radius: 20px;
    z-index: 1;
    opacity: 0.2;
}

.about-image::after {
    content: '';
    position: absolute;
    bottom: 30px;
    left: 30px;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--gold), var(--burgundy));
    border-radius: 20px;
    z-index: 1;
    opacity: 0.15;
}

.about-image img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    z-index: 2;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.about-image:hover img {
    transform: translate(-10px, -10px);
    box-shadow: 0 30px 80px rgba(107, 46, 46, 0.3);
}

/* Decorative Elements */
.about-image .decoration-circle {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 3px solid var(--gold);
    border-radius: 50%;
    z-index: 3;
    opacity: 0.6;
}

.about-image .decoration-circle:nth-child(1) {
    top: -20px;
    left: -20px;
    animation: pulse 3s infinite ease-in-out;
}

.about-image .decoration-circle:nth-child(2) {
    bottom: -20px;
    right: -20px;
    animation: pulse 3s infinite ease-in-out;
    animation-delay: 1.5s;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.3;
    }
}

/* Responsive Adjustments */
@media (max-width: 968px) {
    .about-image {
        height: 400px;
        margin-top: 40px;
    }
    
    .about-image::before,
    .about-image::after {
        display: none;
    }
}

@media (max-width: 640px) {
    .about-image {
        height: 350px;
    }
    
    .about-image .decoration-circle {
        width: 60px;
        height: 60px;
        border-width: 2px;
    }
}




/* ==================== ENHANCED TESTIMONIALS ==================== */
        .testimonials {
            padding: 50px 0;
            background: linear-gradient(135deg, var(--burgundy) 0%, var(--dark-burgundy) 100%);
            position: relative;
            overflow: hidden;
        }

        .testimonials::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(229, 182, 73, 0.1), transparent);
            border-radius: 50%;
            animation: float 20s infinite ease-in-out;
        }

        .testimonials::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(229, 182, 73, 0.08), transparent);
            border-radius: 50%;
            animation: float 25s infinite ease-in-out reverse;
        }

        @keyframes float {
            0%, 100% {
                transform: translate(0, 0) scale(1);
            }
            50% {
                transform: translate(30px, -30px) scale(1.1);
            }
        }

        .testimonials-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }

        .testimonials-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .testimonials-label {
            display: inline-block;
            padding: 8px 20px;
            background: rgba(229, 182, 73, 0.2);
            color: var(--gold);
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            border-radius: 50px;
            margin-bottom: 20px;
            border: 1px solid var(--gold);
        }

        .testimonials h2 {
            color: var(--white);
            font-size: 3.5rem;
            /* margin-bottom: 0px; */
            font-weight: 800;
            letter-spacing: -1px;
        }

        .testimonials-subtitle {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto;
        }

        .testimonial-slider {
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
            
        }

        .testimonial-track {
            position: relative;
            height: 400px;
            overflow: visible;
        }

        .testimonial {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            opacity: 0;
            visibility: hidden;
            transform: translateX(100px) scale(0.9);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .testimonial.active {
            opacity: 1;
            visibility: visible;
            transform: translateX(0) scale(1);
        }

        .testimonial.previous {
            transform: translateX(-100px) scale(0.9);
        }

        .testimonial-card {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            border-radius: 25px;
            padding: 50px 60px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            position: relative;
            overflow: hidden;
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 20px;
            left: 40px;
            font-size: 150px;
            color: rgba(107, 46, 46, 0.05);
            font-family: Georgia, serif;
            line-height: 1;
        }

        .testimonial-content {
            position: relative;
            z-index: 2;
        }

        .testimonial-text {
            font-size: 1.4rem;
            line-height: 1.8;
            color: var(--text-dark);
            margin-bottom: 40px;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 25px;
        }

        .author-image {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            overflow: hidden;
            border: 4px solid var(--gold);
            box-shadow: 0 5px 20px rgba(107, 46, 46, 0.2);
            flex-shrink: 0;
            position: relative;
            background: linear-gradient(135deg, var(--burgundy), var(--gold));
        }

        .author-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .author-image-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--white);
            font-weight: 700;
        }

        .author-details {
            flex: 1;
        }

        .author-name {
            font-size: 1.4rem;
            color: var(--burgundy);
            font-weight: 700;
            /* margin-bottom: 2px; */
        }

        .author-position {
            font-size: 1rem;
            color: var(--text-light);
            font-weight: 500;
        }

        .author-company {
            font-size: 0.9rem;
            color: var(--gold);
            font-weight: 600;
            /* margin-top: 3px; */
        }

        .rating {
            display: flex;
            gap: 5px;
            /* margin-top: 10px; */
        }

        .star {
            color: var(--gold);
            font-size: 1.2rem;
        }

        .testimonial-controls {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 30px;
            margin-top: 50px;
        }

        .testimonial-nav-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            border: 2px solid rgba(255, 255, 255, 0.3);
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            color: var(--white);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            font-size: 1.5rem;
        }

        .testimonial-nav-btn:hover {
            background: var(--gold);
            border-color: var(--gold);
            color: var(--dark-burgundy);
            transform: scale(1.1);
        }

        .testimonial-dots {
            display: flex;
            gap: 12px;
        }

        .testimonial-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            border: 2px solid transparent;
            cursor: pointer;
            transition: all 0.3s ease;
            padding: 0;
        }

        .testimonial-dot.active {
            background: var(--gold);
            border-color: var(--white);
            transform: scale(1.3);
        }

        .testimonial-dot:hover {
            transform: scale(1.2);
        }

        /* Progress Bar */
        .testimonial-progress {
            max-width: 1000px;
            margin: 40px auto 0;
            height: 4px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 2px;
            overflow: hidden;
        }

        .progress-fill {
            height: 100%;
            background: linear-gradient(90deg, var(--gold), var(--light-gold));
            width: 0;
            transition: width 0.1s linear;
            border-radius: 2px;
        }

        /* Responsive Design */
        @media (max-width: 968px) {
            .testimonials {
                padding: 80px 0;
            }

            .testimonials h2 {
                font-size: 2.5rem;
            }

            .testimonial-track {
                height: 550px;
            }

            .testimonial-card {
                padding: 40px 35px;
            }

            .testimonial-text {
                font-size: 1.2rem;
            }

            .author-image {
                width: 70px;
                height: 70px;
            }

            .author-name {
                font-size: 1.2rem;
            }
        }

        @media (max-width: 640px) {
            .testimonials {
                padding: 60px 0;
            }

            .testimonials h2 {
                font-size: 2rem;
            }

            .testimonials-header {
                margin-bottom: 50px;
            }

            .testimonial-track {
                height: 600px;
            }

            .testimonial-card {
                padding: 30px 25px;
            }

            .testimonial-card::before {
                font-size: 100px;
                left: 20px;
            }

            .testimonial-text {
                font-size: 1.1rem;
                margin-bottom: 30px;
            }

            .testimonial-author {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }

            .author-image {
                width: 60px;
                height: 60px;
            }

            .author-name {
                font-size: 1.1rem;
            }

            .author-position {
                font-size: 0.95rem;
            }

            .testimonial-nav-btn {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }

            .testimonial-controls {
                gap: 20px;
            }
        }

/* ==================== CONTACT SECTION ==================== */
.contact {
    padding: 80px 0;
    background: var(--light-gray);
}

.contact-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.submit-btn {
    background: var(--burgundy);
    color: var(--white);
    padding: 15px 40px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: var(--dark-burgundy);
    transform: translateY(-2px);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item h4 {
    color: var(--burgundy);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.info-item p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ==================== PROFESSIONAL FOOTER ==================== */
.footer {
    background: var(--dark-burgundy);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--dark-burgundy) 0%, #3a1515 50%, var(--dark-burgundy) 100%);
    z-index: 1;
}

.footer-main {
    position: relative;
    z-index: 2;
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 40px;
}

/* Footer Brand Column */
.footer-brand {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo .brand-icon {
    width: 40px;
    height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
}

.footer-logo .icon-line {
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--light-gold));
    border-radius: 2px;
    transition: all 0.3s ease;
}

.footer-logo .icon-line:nth-child(1) {
    width: 100%;
}

.footer-logo .icon-line:nth-child(2) {
    width: 70%;
}

.footer-logo .icon-line:nth-child(3) {
    width: 85%;
}

.footer-logo h3 {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gold), var(--light-gold));
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.social-link:hover::before {
    transform: translateY(0);
}

.social-link svg {
    width: 20px;
    height: 20px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.social-link:hover svg {
    transform: scale(1.1);
}

.social-link:hover {
    color: var(--dark-burgundy);
}

/* Footer Columns */
.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-title {
    color: var(--gold);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), transparent);
    border-radius: 2px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 20px;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: 0;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    color: var(--gold);
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 25px;
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Footer Contact */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-contact svg {
    width: 20px;
    height: 20px;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact span {
    flex: 1;
}

/* Newsletter Section */
.footer-newsletter {
    position: relative;
    z-index: 2;
    padding: 50px 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.newsletter-text h3 {
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.newsletter-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    flex: 1;
    max-width: 500px;
}

.input-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper svg {
    position: absolute;
    left: 20px;
    width: 20px;
    height: 20px;
    color: rgba(255, 255, 255, 0.5);
    pointer-events: none;
}

.newsletter-form input {
    width: 100%;
    padding: 18px 20px 18px 55px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: var(--white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-btn {
    padding: 18px 35px;
    background: var(--gold);
    color: var(--dark-burgundy);
    border: 2px solid var(--gold);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.newsletter-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.newsletter-btn:hover {
    background: var(--light-gold);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(229, 182, 73, 0.3);
}

.newsletter-btn:hover svg {
    transform: translateX(5px);
}

/* Footer Bottom */
.footer-bottom {
    position: relative;
    z-index: 2;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.footer-legal {
    display: flex;
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--gold);
}

/* Back to Top Button */
.back-to-top {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--dark-burgundy);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
}

.back-to-top:hover {
    background: var(--light-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(229, 182, 73, 0.3);
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
        gap: 40px;
    }
}

@media (max-width: 968px) {
    .footer-main {
        padding: 60px 0 30px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-brand {
        grid-column: 1 / -1;
        max-width: 100%;
    }

    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-text h3 {
        font-size: 1.5rem;
    }

    .newsletter-form {
        max-width: 100%;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
}

@media (max-width: 640px) {
    .footer-main {
        padding: 40px 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-brand {
        grid-column: 1;
    }

    .footer-newsletter {
        padding: 40px 0;
    }

    .newsletter-text h3 {
        font-size: 1.3rem;
    }

    .newsletter-text p {
        font-size: 0.95rem;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 12px;
    }

    .newsletter-btn {
        width: 100%;
        justify-content: center;
    }

    .social-links {
        justify-content: flex-start;
    }

    .footer-bottom {
        padding: 25px 0;
    }

    .copyright {
        font-size: 0.9rem;
    }

    .footer-legal {
        gap: 15px;
        font-size: 0.9rem;
    }

    .back-to-top {
        position: fixed;
        bottom: 30px;
        right: 20px;
        z-index: 1000;
    }
}

@media (max-width: 480px) {
    .footer-title {
        font-size: 1.1rem;
    }

    .social-links {
        gap: 12px;
    }

    .social-link {
        width: 40px;
        height: 40px;
    }

    .social-link svg {
        width: 18px;
        height: 18px;
    }

    .footer-contact li {
        gap: 12px;
        font-size: 0.95rem;
    }

    .footer-contact svg {
        width: 18px;
        height: 18px;
    }
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 968px) {
    .nav-menu,
    .nav-cta {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .slide-title .title-line {
        font-size: 3rem;
    }
    
    .slide-description {
        font-size: 1.1rem;
    }
    
    .slide-actions {
        flex-direction: column;
    }
    
    .slider-nav {
        left: 20px;
    }
    
    .slider-pagination {
        right: 20px;
    }
    
    .about-content,
    .contact-content,
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .slide-number {
        font-size: 6rem;
        top: -50px;
    }
    
    .slide-title .title-line {
        font-size: 2.5rem;
    }
    
    .cta-primary,
    .cta-secondary {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}


/* Add these fixes to your style.css */

/* Fix 1: Ensure the services section and grid handle 3D transforms properly */

/* Fix 5: Ensure both card faces are properly positioned */
.card-front,
.card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden; /* Add vendor prefix */
    border-radius: 20px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
}

/* Optional: Add a subtle scale effect to keep card contained */
.service-card:hover .card-inner {
    transform: rotateY(180deg) scale(0.98);
}


/* ==================== PARTNERS SECTION ==================== */
:root {
    --gold: #E5B649;
    --burgundy: #6B2E2E;
    --dark-burgundy: #4A1F1F;
    --light-gold: #F0CC70;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --text-dark: #333333;
    --text-light: #666666;
    --partner-item-width: 200px;
    --partner-items-count: 11;
}

.partners {
    padding: 50px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f8f8 100%);
    position: relative;
    overflow: hidden;
}

.partners::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(229, 182, 73, 0.05), transparent);
    border-radius: 50%;
}

.partners::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(107, 46, 46, 0.03), transparent);
    border-radius: 50%;
}

.partners .container {
    position: relative;
    z-index: 2;
}

.partners-header {
    text-align: center;
    margin-bottom: 50px;
}

.partners-label {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--burgundy), var(--gold));
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.partners h2 {
    font-size: 3.5rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -1px;
}

.partners .highlight {
    color: var(--burgundy);
    position: relative;
    display: inline-block;
}

.partners .highlight::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    height: 15px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.3;
    z-index: -1;
}

.partners-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Partners Carousel */
.partners-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    padding: 30px 40px;
    background: var(--white);
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.carousel-container::before,
.carousel-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.carousel-container::before {
    left: 0;
    background: linear-gradient(90deg, var(--white), transparent);
}

.carousel-container::after {
    right: 0;
    background: linear-gradient(270deg, var(--white), transparent);
}

/* Carousel Track - Key Fix for 11 items */
.carousel-track {
    display: flex;
    gap: 40px;
    /* Calculate total width: (item width + gap) * total items * 2 for seamless loop */
    width: calc((var(--partner-item-width) + 40px) * calc(var(--partner-items-count) * 2));
    animation: scroll 50s linear infinite;
    transition: transform 0.5s ease-out;
}

.carousel-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        /* Translate by 50% to show second set after first set completes */
        transform: translateX(calc(-1 * (var(--partner-item-width) + 40px) * var(--partner-items-count)));
    }
}

.partner-item {
    flex: 0 0 auto;
    width: var(--partner-item-width);
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 15px;
    padding: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.partner-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 15px;
    padding: 2px;
    background: linear-gradient(135deg, var(--burgundy), var(--gold));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.partner-item:hover::before {
    opacity: 1;
}

.partner-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 40px rgba(107, 46, 46, 0.15);
    animation-play-state: paused;
}

.partner-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.6);
    transition: all 0.3s ease;
}

.partner-item:hover .partner-logo {
    filter: grayscale(0%) opacity(1);
}

/* Carousel Navigation */
.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.carousel-nav-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--burgundy);
    background: var(--white);
    color: var(--burgundy);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.5rem;
    font-weight: bold;
}

.carousel-nav-btn:hover {
    background: var(--burgundy);
    color: var(--white);
    transform: scale(1.1);
}

/* Services CTA */
.services-cta {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(107, 46, 46, 0.85), rgba(74, 31, 31, 0.9));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(107, 46, 46, 0.25), 
                0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    margin-top: 60px;
}

.services-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 90%);
    animation: rotate 15s linear infinite;
    z-index: 0;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.services-cta p {
    font-size: 1.8rem;
    color: #FFFFFF;
    margin-bottom: 30px;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.services-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 45px;
    background: var(--gold);
    color: var(--dark-burgundy);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(229, 182, 73, 0.3);
}

.services-btn:hover {
    background: var(--light-gold);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(229, 182, 73, 0.4);
}

.services-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.services-btn:hover svg {
    transform: translateX(5px);
}

/* ==================== RESPONSIVE DESIGN ==================== */

@media (max-width: 1200px) {
    .partner-item {
        width: 180px;
        height: 110px;
    }

    .carousel-track {
        gap: 30px;
        width: calc((180px + 30px) * calc(var(--partner-items-count) * 2));
    }

    @keyframes scroll {
        100% {
            transform: translateX(calc(-1 * (180px + 30px) * var(--partner-items-count)));
        }
    }

    .carousel-container {
        padding: 25px 30px;
    }
}

@media (max-width: 968px) {
    .partners {
        padding: 60px 0;
    }

    .partners h2 {
        font-size: 2.5rem;
    }

    .carousel-container {
        padding: 25px 20px;
    }

    .carousel-container::before,
    .carousel-container::after {
        width: 100px;
    }

    .partner-item {
        width: 160px;
        height: 100px;
        padding: 15px;
    }

    .carousel-track {
        gap: 20px;
        width: calc((160px + 20px) * calc(var(--partner-items-count) * 2));
    }

    @keyframes scroll {
        100% {
            transform: translateX(calc(-1 * (160px + 20px) * var(--partner-items-count)));
        }
    }

    .carousel-nav-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .services-cta {
        padding: 45px 35px;
        margin-top: 45px;
    }

    .services-cta p {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }

    .services-btn {
        padding: 16px 40px;
        font-size: 1.05rem;
    }
}

@media (max-width: 768px) {
    .partners h2 {
        font-size: 2.2rem;
    }

    .partner-item {
        width: 140px;
        height: 90px;
        padding: 12px;
    }

    .carousel-track {
        gap: 15px;
        width: calc((140px + 15px) * calc(var(--partner-items-count) * 2));
    }

    @keyframes scroll {
        100% {
            transform: translateX(calc(-1 * (140px + 15px) * var(--partner-items-count)));
        }
    }

    .carousel-nav-btn {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 640px) {
    .partners {
        padding: 50px 0;
    }

    .partners h2 {
        font-size: 2rem;
    }

    .partners-subtitle {
        font-size: 1rem;
    }

    .carousel-container {
        padding: 20px 15px;
    }

    .partner-item {
        width: 120px;
        height: 80px;
        padding: 10px;
    }

    .carousel-track {
        gap: 12px;
        width: calc((120px + 12px) * calc(var(--partner-items-count) * 2));
    }

    @keyframes scroll {
        100% {
            transform: translateX(calc(-1 * (120px + 12px) * var(--partner-items-count)));
        }
    }

    .carousel-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .services-cta {
        padding: 35px 25px;
        margin-top: 35px;
    }

    .services-cta p {
        font-size: 1.25rem;
        margin-bottom: 20px;
    }

    .services-btn {
        padding: 15px 35px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .partners h2 {
        font-size: 1.75rem;
    }

    .partner-item {
        width: 100px;
        height: 70px;
        padding: 8px;
    }

    .carousel-track {
        gap: 10px;
        width: calc((100px + 10px) * calc(var(--partner-items-count) * 2));
    }

    @keyframes scroll {
        100% {
            transform: translateX(calc(-1 * (100px + 10px) * var(--partner-items-count)));
        }
    }

    .carousel-nav-btn {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }
}

        /* ==================== PHOTO GALLERY SECTION ==================== */
.gallery {
    padding: 50px 0;
    background: linear-gradient(180deg, #f8f8f8 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.gallery-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.bg-shape-gallery {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.2;
    animation: float 20s infinite ease-in-out;
}

.shape-gallery-1 {
    width: 500px;
    height: 500px;
    background: var(--burgundy);
    top: -150px;
    right: -100px;
}

.shape-gallery-2 {
    width: 400px;
    height: 400px;
    background: var(--gold);
    bottom: -100px;
    left: -100px;
    animation-delay: 10s;
}

.gallery .container {
    position: relative;
    z-index: 2;
}

/* Gallery Header */
.gallery-header {
    text-align: center;
    margin-bottom: 10px;
}

.gallery-label {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--burgundy), var(--gold));
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    /* margin-bottom: 20px; */
}

.gallery h2 {
    font-size: 3.5rem;
    color: var(--text-dark);
    /* margin-bottom: 20px; */
    font-weight: 800;
    letter-spacing: -1px;
}

.gallery .highlight {
    color: var(--burgundy);
    position: relative;
    display: inline-block;
}

.gallery .highlight::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    height: 15px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.3;
    z-index: -1;
}

.gallery-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Gallery Filters */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 30px;
    background: var(--white);
    color: var(--burgundy);
    border: 2px solid var(--burgundy);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.filter-btn:hover {
    color: white;
    background-color: var(--burgundy);
}

/* .filter-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--burgundy);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
} */

.filter-btn:hover::before,
.filter-btn.active::before {
    width: 300px;
    height: 300px;
}

.filter-btn:hover,
.filter-btn.active {
    color: var(--white);
    background-color: var(--burgundy);
}

.filter-btn span {
    position: relative;
    z-index: 1;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    height: 350px;
    cursor: pointer;
    opacity: 1;
    transform: scale(1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item.hide {
    opacity: 0;
    transform: scale(0.8);
    position: absolute;
    pointer-events: none;
}

.gallery-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(107, 46, 46, 0.95), rgba(74, 31, 31, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-content {
    text-align: center;
    color: var(--white);
    padding: 30px;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-content {
    transform: translateY(0);
}

.gallery-content h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    font-weight: 700;
    color: var(--gold);
}

.gallery-content p {
    font-size: 1rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.view-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--dark-burgundy);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.view-btn:hover {
    background: var(--light-gold);
    transform: scale(1.1) rotate(90deg);
}

.view-btn svg {
    width: 20px;
    height: 20px;
}

/* Load More Button */
.gallery-cta {
    text-align: center;
}

.load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 45px;
    background: var(--burgundy);
    color: var(--white);
    border: 2px solid var(--burgundy);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(107, 46, 46, 0.3);
}

.load-more-btn:hover {
    background: var(--gold);
    color: var(--dark-burgundy);
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(229, 182, 73, 0.4);
}

.load-more-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.load-more-btn:hover svg {
    transform: translateX(5px);
}

/* Lightbox Modal */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.lightbox.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.lightbox-content {
    position: relative;
    max-width: 1200px;
    max-height: 90vh;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-content img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    text-align: center;
    color: var(--white);
    margin-top: 30px;
}

.lightbox-caption h3 {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 10px;
}

.lightbox-caption p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
}

.lightbox-close:hover {
    background: var(--burgundy);
    border-color: var(--burgundy);
    transform: rotate(90deg);
}

.lightbox-close svg {
    width: 24px;
    height: 24px;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-nav:hover {
    background: var(--burgundy);
    border-color: var(--burgundy);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-nav svg {
    width: 24px;
    height: 24px;
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 968px) {
    .gallery {
        padding: 80px 0;
    }

    .gallery h2 {
        font-size: 2.5rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }

    .gallery-item {
        height: 300px;
    }

    .gallery-filters {
        gap: 10px;
    }

    .filter-btn {
        padding: 10px 24px;
        font-size: 0.9rem;
    }

    .lightbox {
        padding: 20px;
    }

    .lightbox-nav,
    .lightbox-close {
        width: 50px;
        height: 50px;
    }

    .lightbox-nav svg,
    .lightbox-close svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 640px) {
    .gallery {
        padding: 60px 0;
    }

    .gallery h2 {
        font-size: 2rem;
    }

    .gallery-subtitle {
        font-size: 1rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .gallery-item {
        height: 280px;
    }

    .gallery-content h3 {
        font-size: 1.3rem;
    }

    .gallery-content p {
        font-size: 0.9rem;
    }

    .load-more-btn {
        padding: 15px 35px;
        font-size: 1rem;
    }

    .lightbox-caption h3 {
        font-size: 1.5rem;
    }

    .lightbox-caption p {
        font-size: 1rem;
    }

    .lightbox-nav,
    .lightbox-close {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .gallery h2 {
        font-size: 1.75rem;
    }

    .gallery-filters {
        gap: 8px;
    }

    .filter-btn {
        padding: 8px 20px;
        font-size: 0.85rem;
    }

    .gallery-item {
        height: 250px;
    }

    .gallery-content {
        padding: 20px;
    }

    .view-btn {
        width: 45px;
        height: 45px;
    }
}


/* ==================== MOBILE MENU FIXES ==================== */

/* Hamburger Menu - Always Hidden on Desktop */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
    position: relative;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--burgundy);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hamburger Active State */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile Menu Styles */
@media (max-width: 968px) {
    /* Show Hamburger on Mobile */
    .hamburger {
        display: flex;
    }
    
    /* Hide Desktop Menu Items */
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        display: flex !important; /* Override any display:none */
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 60px 20px;
        gap: 0;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        z-index: 999;
    }
    
    /* Show Mobile Menu When Active */
    .nav-menu.active {
        left: 0;
    }
    
    /* Mobile Menu Items */
    .nav-menu li {
        width: 100%;
        text-align: center;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease;
    }
    
    /* Animate Menu Items When Menu Opens */
    .nav-menu.active li {
        opacity: 1;
        transform: translateY(0);
    }
    
    .nav-menu.active li:nth-child(1) {
        transition-delay: 0.1s;
    }
    
    .nav-menu.active li:nth-child(2) {
        transition-delay: 0.2s;
    }
    
    .nav-menu.active li:nth-child(3) {
        transition-delay: 0.3s;
    }
    
    .nav-menu.active li:nth-child(4) {
        transition-delay: 0.4s;
    }
    
    /* Mobile Nav Links */
    .nav-link {
        display: block;
        padding: 20px 0;
        font-size: 1.2rem;
        width: 100%;
        border-bottom: 1px solid rgba(107, 46, 46, 0.1);
    }
    
    .nav-link::before {
        display: none;
    }
    
    /* Mobile CTA Button */
    .nav-cta {
        position: fixed;
        bottom: -100px;
        left: 50%;
        transform: translateX(-50%);
        width: calc(100% - 40px);
        max-width: 400px;
        transition: bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        padding: 20px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        border-radius: 20px 20px 0 0;
        box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active ~ .nav-cta {
        bottom: 0;
    }
    
    .cta-btn {
        width: 100%;
        text-align: center;
        display: block;
    }
    
    /* Prevent Body Scroll When Menu Open */
    body.menu-open {
        overflow: hidden;
    }
}

/* Tablet Adjustments */
@media (max-width: 768px) {
    .nav-menu {
        padding: 40px 20px;
    }
    
    .nav-link {
        font-size: 1.1rem;
        padding: 18px 0;
    }
}

/* Small Mobile Adjustments */
@media (max-width: 640px) {
    .navbar .container {
        padding: 1rem 15px;
    }
    
    .nav-brand h2 {
        font-size: 1.2rem;
    }
    
    .brand-icon {
        width: 35px;
        height: 35px;
    }
    
    .hamburger span {
        width: 25px;
        height: 2.5px;
    }
    
    .nav-menu {
        top: 70px;
        height: calc(100vh - 70px);
        padding: 30px 15px;
    }
    
    .nav-link {
        font-size: 1rem;
        padding: 16px 0;
    }
    
    .nav-cta {
        padding: 15px;
    }
    
    .cta-btn {
        padding: 14px 25px;
        font-size: 0.95rem;
    }
}

/* Very Small Screens */
@media (max-width: 480px) {
    .nav-brand h2 {
        font-size: 1.1rem;
    }
    
    .brand-icon {
        width: 30px;
        height: 30px;
        gap: 3px;
    }
    
    .icon-line {
        height: 2.5px;
    }
    
    .hamburger span {
        width: 24px;
    }
}

/* Logo Image Styling */
.nav-brand img {
    max-height: 50px;
    width: auto;
    display: block;
}

@media (max-width: 640px) {
    .nav-brand img {
        max-height: 40px;
    }
}

@media (max-width: 480px) {
    .nav-brand img {
        max-height: 35px;
    }
}



/* ==================== PARTNERS STATS SECTION ==================== */
.partners-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 60px 0;
    border-top: 1px solid rgba(107, 46, 46, 0.1);
    border-bottom: 1px solid rgba(107, 46, 46, 0.1);
    margin: 0 0 60px 0;
}

.partners-stats .stat-item {
    text-align: center;
}

.partners-stats .stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 10px;
    display: block;
}

.partners-stats .stat-label {
    color: var(--white);
    font-weight: 600;
    font-size: 1.05rem;
    display: block;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .partners-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 50px 0;
    }
}

@media (max-width: 768px) {
    .partners-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        padding: 40px 0;
    }

    .partners-stats .stat-number {
        font-size: 2.5rem;
    }

    .partners-stats .stat-label {
        font-size: 0.95rem;
    }
}

@media (max-width: 640px) {
    .partners-stats {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 30px 0;
    }

    .partners-stats .stat-number {
        font-size: 2rem;
    }

    .partners-stats .stat-label {
        font-size: 0.9rem;
    }
}

.partners-stats-section {
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--dark-burgundy) 100%);
    position: relative;
}