/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Journalism Theme Color Scheme */
    --burgundy: #8B1538;
    --dark-burgundy: #5C0E24;
    --deep-blue: #1E3A5F;
    --warm-gold: #C9A961;
    --cream: #F5F1E8;
    --charcoal: #2C2C2C;
    --white: #ffffff;
    --light-gray: #F8F6F2;
    --medium-gray: #9e9e9e;
    
    --text-dark: #1E3A5F;
    --text-light: #424242;
    --bg-light: #F8F6F2;
    --bg-white: #ffffff;
    --shadow: 0 2px 8px rgba(30, 58, 95, 0.15);
    --shadow-lg: 0 4px 16px rgba(30, 58, 95, 0.25);
    --border-strict: 2px solid #8B1538;
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --border-radius-xl: 30px;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 40px);
}

/* Fullscreen Menu (Mobile Only) */
.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--burgundy);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border-left: 4px solid var(--warm-gold);
    border-radius: var(--border-radius);
}

/* Desktop: Hide fullscreen menu, show desktop nav */
@media (min-width: 769px) {
    .fullscreen-menu {
        display: none !important;
    }
    
    .desktop-nav {
        display: flex;
    }
    
    .menu-toggle {
        display: none;
    }
}

.fullscreen-menu.active {
    opacity: 1;
    visibility: visible;
}

.fullscreen-menu-content {
    text-align: center;
}

.menu-close {
    position: absolute;
    top: 40px;
    right: 40px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 3rem;
    cursor: pointer;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.menu-close:hover {
    transform: rotate(90deg);
}

.fullscreen-nav ul {
    list-style: none;
}

.fullscreen-nav li {
    margin: 2rem 0;
}

.fullscreen-link {
    color: var(--white);
    text-decoration: none;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
}

.fullscreen-link::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 4px;
    background: var(--warm-gold);
    transition: width 0.3s ease;
}

.fullscreen-link:hover {
    color: var(--warm-gold);
    transform: translateX(15px);
}

.fullscreen-link:hover::after {
    width: 100%;
}

/* Header */
.header {
    background: var(--white);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.2rem 0;
    box-shadow: 0 2px 8px rgba(30, 58, 95, 0.15);
    border-bottom: 3px solid var(--burgundy);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 700;
    color: var(--deep-blue);
    text-decoration: none;
    transition: color 0.3s ease;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-right: 2px solid var(--dark-navy);
    padding-right: 1.5rem;
}

.logo:hover {
    color: var(--dark-burgundy);
}

/* Desktop Navigation */
.desktop-nav {
    display: flex;
    align-items: center;
}

.desktop-nav-list {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

.desktop-nav-list .nav-link {
    text-decoration: none;
    color: var(--deep-blue);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.desktop-nav-list .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--warm-gold);
    transition: width 0.3s ease;
}

.desktop-nav-list .nav-link:hover,
.desktop-nav-list .nav-link.active {
    color: var(--dark-burgundy);
}

.desktop-nav-list .nav-link:hover::after,
.desktop-nav-list .nav-link.active::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: none;
    flex-direction: column;
    gap: 6px;
    z-index: 10001;
    padding: 10px;
    position: relative;
    pointer-events: auto;
    -webkit-tap-highlight-color: transparent;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background: var(--burgundy);
    transition: all 0.3s ease;
    border-radius: 3px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
    background: var(--white);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
    background: var(--white);
}

/* Hero Diagonal Split */
.hero-diagonal {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    padding-top: 80px;
}

.blob-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: blob-morph 20s infinite ease-in-out;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: var(--dark-burgundy);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
    opacity: 0.15;
}

.blob-2 {
    width: 600px;
    height: 600px;
    background: var(--burgundy);
    bottom: -300px;
    right: -300px;
    animation-delay: 5s;
    opacity: 0.15;
}

.blob-3 {
    width: 400px;
    height: 400px;
    background: var(--warm-gold);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
    opacity: 0.1;
}

@keyframes blob-morph {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        border-radius: 50%;
    }
    25% {
        transform: translate(100px, -50px) scale(1.1);
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    50% {
        transform: translate(-50px, 100px) scale(0.9);
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }
    75% {
        transform: translate(50px, 50px) scale(1.05);
        border-radius: 40% 60% 30% 60% / 60% 30% 60% 40%;
    }
}

.hero-diagonal-container {
    position: relative;
    width: 100%;
    min-height: calc(100vh - 80px);
    z-index: 1;
}

.hero-diagonal-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    height: 70%;
    background: var(--light-gray);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 4rem 6rem;
    padding-top: 6rem;
    clip-path: polygon(0 0, 100% 0, 55% 100%, 0 100%);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.hero-diagonal-content:hover {
    clip-path: polygon(0 0, 100% 0, 60% 100%, 0 100%);
    transform: scale(1.02);
}

.hero-diagonal-image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    height: 60%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem;
    clip-path: polygon(40% 0, 100% 0, 100% 100%, 0 100%);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.hero-diagonal-image:hover {
    clip-path: polygon(35% 0, 100% 0, 100% 100%, 0 100%);
    transform: scale(1.02);
}

.diagonal-divider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.diagonal-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 70%;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, 
        var(--deep-blue) 0%, 
        var(--warm-gold) 50%, 
        var(--dark-burgundy) 100%);
    transform: translateX(-50%) skewY(-12deg);
    box-shadow: 0 0 20px rgba(30, 58, 95, 0.3);
}

.diagonal-divider::after {
    content: '';
    position: absolute;
    top: 0;
    left: 70%;
    width: 8px;
    height: 100%;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(201, 169, 97, 0.2) 50%, 
        transparent 100%);
    transform: translateX(-50%) skewY(-12deg);
}

.hero-content-wrapper {
    max-width: 800px;
    margin-top: 3rem;
    width: 100%;
    padding-right: 2rem;
}

.hero-title-large {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--deep-blue);
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
    letter-spacing: -1px;
    text-transform: uppercase;
    border-left: 6px solid var(--warm-gold);
    padding-left: 1.5rem;
}

.hero-description {
    font-size: clamp(0.85rem, 1.4vw, 1rem);
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
    animation: fadeInUp 1.2s ease;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.hero-cta {
    animation: fadeInUp 1.4s ease;
}

.btn-pulse {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--burgundy);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 3px solid var(--burgundy);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(30, 58, 95, 0.3);
}

.btn-pulse::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--dark-burgundy);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-pulse:hover::before {
    left: 0;
}

.btn-pulse:hover {
    border-color: var(--dark-burgundy);
    color: var(--white);
}

.btn-pulse::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-pulse:hover::before {
    width: 300px;
    height: 300px;
}

.btn-pulse:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(30, 58, 95, 0.4);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(30, 58, 95, 0.3);
    }
    50% {
        box-shadow: 0 6px 16px rgba(139, 21, 56, 0.4);
    }
}

.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 600px;
}

.hero-main-image {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    animation: fadeInRight 1s ease;
}

.hero-overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    pointer-events: none;
}

.pulse-text {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    color: rgba(255, 255, 255, 1);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    animation: textPulse 3s infinite;
}

.pulse-text:nth-child(2) {
    animation-delay: 1s;
}

.pulse-text:nth-child(3) {
    animation-delay: 2s;
}

@keyframes textPulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(0.9);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

.hero-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--text-light);
    z-index: 2;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: var(--burgundy);
    margin: 10px auto;
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -4px;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--navy-blue);
    border-bottom: 2px solid var(--navy-blue);
    transform: rotate(45deg);
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* Section Headers */
.section-header-centered {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title-large {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    color: var(--deep-blue);
    margin-bottom: 1.5rem;
    letter-spacing: 0px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
    border-bottom: 4px solid var(--warm-gold);
}

.section-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Services Tabs Section */
.services-tabs-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.tabs-container {
    max-width: 1400px;
    margin: 0 auto;
}

.tabs-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.tabs-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: sticky;
    top: 120px;
}

.tab-btn {
    padding: 1.5rem 2rem;
    background: var(--white);
    border: 3px solid var(--burgundy);
    color: var(--deep-blue);
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: left;
    width: 100%;
    display: block;
    z-index: 1;
    pointer-events: auto;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.tab-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--burgundy);
    transition: width 0.3s ease;
    z-index: -1;
    border-radius: var(--border-radius);
}

.tab-btn:hover::before,
.tab-btn.active::before {
    width: 100%;
}

.tab-btn:hover {
    color: var(--white);
    border-color: var(--burgundy);
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(139, 21, 56, 0.2);
}

.tab-btn.active {
    background: var(--burgundy);
    border-color: var(--burgundy);
    color: var(--white);
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(139, 21, 56, 0.3);
}

.tab-btn.active::before {
    background: var(--burgundy);
    width: 100%;
}

.tabs-content {
    position: relative;
    min-height: 500px;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.tab-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.tab-text h3 {
    font-size: 2rem;
    color: var(--deep-blue);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-left: 5px solid var(--warm-gold);
    padding-left: 1rem;
}

.tab-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.service-features {
    list-style: none;
    margin-top: 2rem;
}

.service-features li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-light);
    font-size: 1.05rem;
}

.service-features li::before {
    content: '■';
    position: absolute;
    left: 0;
    color: var(--dark-burgundy);
    font-weight: bold;
    font-size: 1.2rem;
}

/* About Stats Section */
.about-stats-section {
    padding: 6rem 0;
    background: var(--white);
}

.about-intro {
    max-width: 900px;
    margin: 0 auto 5rem;
    text-align: center;
}

.about-description {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    border: 3px solid var(--burgundy);
    border-top: 6px solid var(--warm-gold);
}

.stat-card:hover {
    border-top-color: var(--dark-burgundy);
    transform: translateY(-5px);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.stat-number {
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 900;
    color: var(--deep-blue);
    display: inline-block;
    line-height: 1;
}

.stat-suffix {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--dark-burgundy);
    display: inline-block;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-top: 1rem;
    font-weight: 500;
}

/* Features Section */
.features-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.features-grid-asymmetric {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-card-large {
    grid-column: span 2;
    background: var(--burgundy);
    color: var(--white);
    padding: 4rem;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    border: 4px solid var(--warm-gold);
    border-left: 8px solid var(--dark-burgundy);
}

.feature-card-large:hover {
    border-left-color: var(--warm-gold);
    transform: translateX(5px);
}

.feature-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid var(--charcoal);
    border-top: 4px solid var(--burgundy);
}

.feature-card:hover {
    border-top-color: var(--dark-burgundy);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon-large {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--white);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--burgundy);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 1.5rem;
    color: var(--white);
    border: 3px solid var(--warm-gold);
}

.feature-card h3,
.feature-card-large h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: inherit;
}

.feature-card p,
.feature-card-large p {
    line-height: 1.8;
    color: inherit;
    opacity: 0.9;
}

/* Process Section */
.process-section {
    padding: 6rem 0;
    background: var(--white);
}

.process-horizontal {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 2rem;
}

.process-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 2rem;
}

.process-number-large {
    width: 100px;
    height: 100px;
    background: var(--burgundy);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 900;
    margin: 0 auto 2rem;
    box-shadow: var(--shadow);
    border: 4px solid var(--warm-gold);
    position: relative;
}

.process-number-large::after {
    content: '';
    position: absolute;
    inset: -8px;
    border: 2px solid var(--dark-burgundy);
    border-radius: 50%;
    z-index: -1;
}

.process-connector {
    width: 60px;
    height: 4px;
    background: var(--burgundy);
    margin: 60px 0;
    position: relative;
    border-top: 2px solid var(--gold);
    border-bottom: 2px solid var(--dark-burgundy);
}

.process-connector::after {
    content: '→';
    position: absolute;
    right: -15px;
    top: -10px;
    color: var(--dark-burgundy);
    font-size: 1.5rem;
    font-weight: bold;
}

.process-item h3 {
    font-size: 1.5rem;
    color: var(--deep-blue);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.process-item p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 0;
    background: var(--light-gray);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border: 3px solid var(--burgundy);
    border-top: 6px solid var(--warm-gold);
    border-radius: var(--border-radius-lg);
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-top-color: var(--dark-burgundy);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-quote {
    font-size: 4rem;
    color: var(--dark-burgundy);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 1rem;
    opacity: 0.4;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.testimonial-author-info h4 {
    font-size: 1.2rem;
    color: var(--deep-blue);
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonial-author-info span {
    font-size: 0.95rem;
    color: var(--medium-gray);
}

.testimonial-rating {
    margin-top: 1rem;
}

.testimonial-rating .star {
    color: var(--warm-gold);
    font-size: 1.2rem;
    margin-right: 0.2rem;
}

/* Partners Section */
.partners-section {
    padding: 6rem 0;
    background: var(--white);
    border-top: 4px solid var(--burgundy);
    border-bottom: 4px solid var(--navy-blue);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.partner-item {
    background: var(--light-gray);
    border: 3px solid var(--charcoal);
    border-radius: var(--border-radius);
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 150px;
    transition: all 0.3s ease;
}

.partner-item:hover {
    border-color: var(--burgundy);
    background: var(--white);
    transform: scale(1.05);
}

/* Learning Formats Section */
.learning-formats-section {
    padding: 6rem 0;
    background: var(--bg-light);
    border-top: 4px solid var(--burgundy);
    border-bottom: 4px solid var(--warm-gold);
}

.formats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.format-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border: 3px solid var(--burgundy);
    border-top: 6px solid var(--warm-gold);
    border-radius: var(--border-radius-lg);
    transition: all 0.3s ease;
    position: relative;
    box-shadow: var(--shadow);
}

.format-card:hover {
    border-top-color: var(--dark-burgundy);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.format-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
    text-align: center;
}

.format-card h3 {
    font-size: 1.6rem;
    color: var(--deep-blue);
    margin-bottom: 1.5rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 3px solid var(--burgundy);
    padding-bottom: 1rem;
}

.format-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.05rem;
    text-align: center;
}

.format-features {
    list-style: none;
    margin: 0;
    padding: 0;
}

.format-features li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}

.format-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--warm-gold);
    font-weight: bold;
    font-size: 1.3rem;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: var(--light-gray);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 3px solid var(--burgundy);
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-item.active {
    border-color: var(--dark-burgundy);
    border-left: 8px solid var(--warm-gold);
}

.faq-question {
    padding: 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--light-gray);
}

.faq-question h3 {
    font-size: 1.3rem;
    color: var(--deep-blue);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.faq-icon {
    font-size: 2rem;
    color: var(--dark-burgundy);
    font-weight: 300;
    transition: transform 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--dark-burgundy);
    border-radius: 50%;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: var(--dark-burgundy);
    color: var(--white);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 2rem;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.05rem;
    margin: 0;
}

/* Benefits Section */
.benefits-section {
    padding: 6rem 0;
    background: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.benefit-item {
    background: var(--light-gray);
    padding: 3rem 2rem;
    border: 3px solid var(--charcoal);
    border-left: 6px solid var(--burgundy);
    border-radius: var(--border-radius-lg);
    transition: all 0.3s ease;
    position: relative;
}

.benefit-item:hover {
    border-left-color: var(--warm-gold);
    background: var(--white);
    transform: translateX(5px);
    box-shadow: var(--shadow);
}

.benefit-number {
    position: absolute;
    top: -20px;
    left: 2rem;
    width: 50px;
    height: 50px;
    background: var(--dark-burgundy);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    border: 3px solid var(--warm-gold);
    border-radius: 50%;
}

.benefit-item h3 {
    font-size: 1.5rem;
    color: var(--deep-blue);
    margin-bottom: 1rem;
    margin-top: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.benefit-item p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Contact Split Section */
.contact-split-section {
    padding: 0;
    min-height: 600px;
}

.contact-split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.contact-map-side {
    background: var(--burgundy);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem;
    color: var(--white);
    border-right: 6px solid var(--warm-gold);
}

.contact-info-card h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 4px solid var(--warm-gold);
    padding-bottom: 1rem;
    display: inline-block;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-detail-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--warm-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-detail-item p {
    line-height: 1.8;
    opacity: 1;
    color: var(--white);
}

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

.contact-detail-item a:hover {
    color: var(--warm-gold);
}

.contact-form-side {
    background: linear-gradient(135deg, var(--white) 0%, var(--bg-light) 100%);
    padding: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.contact-form-side::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(139, 21, 56, 0.05) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.form-wrapper {
    width: 100%;
    max-width: 700px;
    background: var(--white);
    padding: 3.5rem;
    border-radius: var(--border-radius-xl);
    box-shadow: 0 10px 40px rgba(30, 58, 95, 0.15);
    position: relative;
    z-index: 1;
    border: 2px solid rgba(139, 21, 56, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.form-header h2 {
    font-size: 2.2rem;
    color: var(--deep-blue);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(135deg, var(--deep-blue) 0%, var(--burgundy) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-header p {
    color: var(--text-light);
    font-size: 1rem;
    margin: 0;
}

.contact-form-modern {
    width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 2rem;
    position: relative;
}

.input-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.3rem;
    z-index: 2;
    transition: all 0.3s ease;
    pointer-events: none;
}

.textarea-wrapper .input-icon {
    top: 1.5rem;
    transform: translateY(0);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.5rem 1.5rem 1.5rem 3.5rem;
    border: 2px solid rgba(44, 44, 44, 0.2);
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-family: inherit;
    background: var(--bg-light);
    transition: all 0.3s ease;
    color: var(--text-dark);
    position: relative;
    z-index: 1;
}

.form-group textarea {
    padding-top: 2rem;
    min-height: 150px;
    resize: vertical;
}

.form-group label {
    position: absolute;
    left: 3.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--medium-gray);
    font-size: 1rem;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 2;
    background: var(--bg-light);
    padding: 0 0.5rem;
}

.textarea-wrapper label {
    top: 2rem;
    transform: translateY(0);
}

.input-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--burgundy) 0%, var(--warm-gold) 100%);
    transition: width 0.3s ease;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--burgundy);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(139, 21, 56, 0.1);
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group input:valid + label,
.form-group textarea:valid + label {
    top: -0.5rem;
    left: 1rem;
    font-size: 0.85rem;
    color: var(--burgundy);
    font-weight: 600;
    background: var(--white);
    transform: translateY(0);
}

.form-group input:focus ~ .input-line,
.form-group textarea:focus ~ .input-line {
    width: 100%;
}

.form-group input:focus ~ .input-icon,
.form-group textarea:focus ~ .input-icon {
    transform: translateY(-50%) scale(1.2);
    filter: drop-shadow(0 0 5px rgba(139, 21, 56, 0.5));
}

.textarea-wrapper input:focus ~ .input-icon,
.textarea-wrapper textarea:focus ~ .input-icon {
    transform: translateY(0) scale(1.2);
}

.btn-submit {
    width: 100%;
    padding: 1.5rem 3rem;
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--dark-burgundy) 100%);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    box-shadow: 0 4px 15px rgba(139, 21, 56, 0.3);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 21, 56, 0.4);
}

.btn-submit:active {
    transform: translateY(0);
}

.btn-submit .btn-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.btn-submit:hover .btn-icon {
    transform: translateX(5px);
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-submit:hover .btn-shine {
    left: 100%;
}

/* Footer */
.footer {
    background: var(--charcoal);
    color: var(--white);
    padding: 4rem 0 2rem;
    border-top: 6px solid var(--burgundy);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--warm-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid var(--dark-burgundy);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-registration {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 1.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-popup.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    color: var(--text-dark);
    margin: 0;
}

.cookie-content a {
    color: var(--deep-blue);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-decline {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background: var(--burgundy);
    color: var(--white);
    border: 2px solid var(--navy-blue);
    border-radius: var(--border-radius);
}

.btn-accept:hover {
    background: var(--dark-burgundy);
    border-color: var(--dark-burgundy);
}

.btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-decline {
    background: var(--white);
    color: var(--deep-blue);
    border: 2px solid var(--navy-blue);
    border-radius: var(--border-radius);
}

.btn-decline:hover {
    background: var(--bg-light);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .hero-diagonal-content {
        width: 75%;
        height: 55%;
        clip-path: polygon(0 0, 100% 0, 70% 100%, 0 100%);
        padding: 3rem 4rem;
        padding-top: 5rem;
    }
    
    .hero-content-wrapper {
        max-width: 100%;
    }
    
    .hero-diagonal-image {
        width: 70%;
        height: 50%;
        clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
        padding: 3rem;
    }
    
    .diagonal-divider::before,
    .diagonal-divider::after {
        left: 70%;
    }
    
    .tabs-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .tabs-nav {
        position: relative;
        top: 0;
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 1rem;
    }
    
    .tab-btn {
        white-space: nowrap;
        min-width: 200px;
        text-align: center;
    }
    
    .tab-content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .tab-image {
        order: -1;
    }
    
    .contact-split-container {
        grid-template-columns: 1fr;
    }
    
    .feature-card-large {
        grid-column: span 1;
    }
    
    .process-horizontal {
        flex-direction: column;
    }
    
    .process-connector {
        width: 3px;
        height: 60px;
        margin: 0 auto;
    }
    
    .process-connector::after {
        content: '↓';
        right: -10px;
        top: auto;
        bottom: -15px;
    }
}

@media (max-width: 768px) {
    /* Hide desktop nav, show burger menu */
    .desktop-nav {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .hero-diagonal-content {
        width: 100%;
        height: 50%;
        clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
        padding: 2rem;
        position: relative;
    }
    
    .hero-diagonal-image {
        width: 100%;
        height: 50%;
        clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 100%);
        padding: 2rem;
        position: relative;
    }
    
    .diagonal-divider::before,
    .diagonal-divider::after {
        display: none;
    }
    
    .hero-title-large {
        font-size: 2rem;
    }
    
    .section-title-large {
        font-size: 2rem;
    }
    
    .tabs-layout {
        grid-template-columns: 1fr;
    }
    
    .tabs-nav {
        flex-direction: row;
        overflow-x: auto;
        position: relative;
        top: 0;
        padding-bottom: 1rem;
    }
    
    .tab-btn {
        min-width: 180px;
        white-space: nowrap;
        text-align: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid-asymmetric {
        grid-template-columns: 1fr;
    }
    
    .formats-grid {
        grid-template-columns: 1fr;
    }
    
    .format-card {
        padding: 2rem 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-map-side,
    .contact-form-side {
        padding: 2rem;
    }
    
    .form-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .form-header h2 {
        font-size: 1.8rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 1.2rem 1.2rem 1.2rem 3rem;
    }
    
    .form-group textarea {
        padding-top: 1.5rem;
    }
    
    .input-icon {
        font-size: 1.1rem;
    }
    
    .blob {
        filter: blur(60px);
    }
    
    .blob-1,
    .blob-2,
    .blob-3 {
        width: 300px;
        height: 300px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-diagonal-content,
    .hero-diagonal-image {
        padding: 1.5rem;
    }
    
    .hero-title-large {
        font-size: 1.8rem;
    }
    
    .btn-pulse {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .section-title-large {
        font-size: 1.8rem;
    }
    
    .tab-text h3 {
        font-size: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .process-number-large {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
}

/* Policy Pages Styles */
.policy-page {
    padding: 2rem 0 5rem;
    background: var(--white);
    min-height: 80vh;
    padding-top: 100px;
}

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

.policy-content h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--deep-blue);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 4px solid var(--warm-gold);
    padding-bottom: 1rem;
}

.policy-content h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: var(--deep-blue);
    margin-top: 2rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-left: 5px solid var(--dark-burgundy);
    padding-left: 1rem;
    border-radius: 3px 0 0 3px;
}

.policy-content h3 {
    font-size: 1.3rem;
    color: var(--dark-burgundy);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.policy-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.policy-content ul,
.policy-content ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.policy-content li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.policy-content a {
    color: var(--deep-blue);
    text-decoration: underline;
}

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

/* Thanks Page Styles */
.thanks-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    padding: 2rem;
    padding-top: 100px;
}

.thanks-content {
    text-align: center;
    background: var(--white);
    padding: 4rem;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-lg);
    max-width: 600px;
    border: 4px solid var(--burgundy);
    border-top: 8px solid var(--warm-gold);
}

.thanks-content h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--deep-blue);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 4px solid var(--warm-gold);
    padding-bottom: 1rem;
    display: inline-block;
}

.thanks-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.thanks-icon {
    font-size: 4rem;
    color: var(--dark-burgundy);
    margin-bottom: 1rem;
}

/* ============================================
   UNIQUE SECTIONS WITH ADVANCED ANIMATIONS
   ============================================ */

/* Parallax Transition Section */
.parallax-transition-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: linear-gradient(135deg, var(--deep-blue) 0%, var(--burgundy) 50%, var(--dark-burgundy) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 0;
}

.parallax-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    perspective: 1000px;
}

.parallax-content {
    position: relative;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 4rem 2rem;
}

.floating-card {
    position: relative;
    width: 300px;
    height: 300px;
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.floating-card:hover {
    transform: translateY(-20px) rotateY(10deg) rotateX(5deg);
}

.card-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius-xl);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.floating-card:hover .card-inner {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--warm-gold);
    box-shadow: 0 30px 80px rgba(201, 169, 97, 0.4);
}

.card-inner h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.card-inner p {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* Wave Transition */
.parallax-transition-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: var(--bg-light);
    clip-path: polygon(0 0, 100% 0, 100% 50%, 0 100%);
    z-index: 1;
}

.parallax-transition-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: var(--bg-light);
    clip-path: polygon(0 50%, 100% 0, 100% 100%, 0 100%);
    z-index: 1;
}

/* Interactive Timeline Section */
.timeline-section {
    padding: 8rem 0;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.timeline-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(139, 21, 56, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(30, 58, 95, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.timeline-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, 
        var(--burgundy) 0%, 
        var(--warm-gold) 50%, 
        var(--deep-blue) 100%);
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-item {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 6rem;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
    transform: translateX(50px);
}

.timeline-item.active {
    opacity: 1;
    transform: translateX(0);
}

.timeline-dot {
    position: absolute;
    left: 50%;
    width: 30px;
    height: 30px;
    background: var(--warm-gold);
    border: 5px solid var(--white);
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 0 0 0 rgba(201, 169, 97, 0.7);
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(201, 169, 97, 0.7);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(201, 169, 97, 0);
    }
}

.timeline-content {
    width: 45%;
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--burgundy);
    position: relative;
    transition: all 0.4s ease;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
}

.timeline-content:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--warm-gold);
    box-shadow: 0 20px 40px rgba(139, 21, 56, 0.3);
}

.timeline-number {
    position: absolute;
    top: -20px;
    left: 20px;
    width: 60px;
    height: 60px;
    background: var(--burgundy);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 900;
    border: 4px solid var(--white);
    box-shadow: var(--shadow);
}

.timeline-content h3 {
    font-size: 1.8rem;
    color: var(--deep-blue);
    margin-bottom: 1rem;
    margin-top: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Morphing Shapes Section */
.morphing-section {
    position: relative;
    min-height: 80vh;
    padding: 8rem 0;
    overflow: hidden;
    background: var(--charcoal);
    color: var(--white);
}

.morphing-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.morph-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    animation: morph-shape 15s infinite ease-in-out;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: var(--burgundy);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.shape-2 {
    width: 500px;
    height: 500px;
    background: var(--warm-gold);
    bottom: -150px;
    right: -150px;
    animation-delay: 5s;
}

.shape-3 {
    width: 400px;
    height: 400px;
    background: var(--deep-blue);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

@keyframes morph-shape {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        border-radius: 50%;
    }
    25% {
        transform: translate(100px, -80px) scale(1.2);
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    50% {
        transform: translate(-80px, 100px) scale(0.8);
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }
    75% {
        transform: translate(80px, 80px) scale(1.1);
        border-radius: 40% 60% 30% 60% / 60% 30% 60% 40%;
    }
}

.morphing-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.morphing-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease;
}

.morphing-text {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.9;
    margin-bottom: 4rem;
    animation: fadeInUp 1.2s ease;
}

.morphing-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.morph-stat {
    text-align: center;
    animation: fadeInUp 1.4s ease;
}

.morph-stat-number {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    color: var(--warm-gold);
    line-height: 1;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(201, 169, 97, 0.5);
}

.morph-stat-label {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* 3D Cards Section */
.cards-3d-section {
    padding: 8rem 0;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.cards-3d-container {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    perspective: 1000px;
}

.card-3d {
    width: 320px;
    height: 400px;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
}

.card-3d:hover {
    transform: translateY(-20px);
}

.card-3d-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.card-3d:hover .card-3d-inner {
    transform: rotateY(180deg);
}

.card-3d-front,
.card-3d-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: var(--border-radius-xl);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--burgundy);
}

.card-3d-front {
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--dark-burgundy) 100%);
    color: var(--white);
}

.card-3d-back {
    background: linear-gradient(135deg, var(--deep-blue) 0%, var(--burgundy) 100%);
    color: var(--white);
    transform: rotateY(180deg);
}

.card-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.card-3d-front h3,
.card-3d-back h3 {
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 1rem;
}

.card-3d-back p {
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
    opacity: 1;
}

/* Section Transitions with Wave Effects */
.services-tabs-section {
    position: relative;
}

.services-tabs-section::before {
    content: '';
    position: absolute;
    top: -80px;
    left: 0;
    width: 100%;
    height: 100px;
    background: var(--bg-light);
    clip-path: polygon(0 0, 100% 0, 100% 60%, 0 100%);
    z-index: 1;
}

.about-stats-section {
    position: relative;
}

.about-stats-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: 0;
    width: 100%;
    height: 100px;
    background: var(--white);
    clip-path: polygon(0 40%, 100% 0, 100% 100%, 0 100%);
    z-index: 1;
}

.features-section {
    position: relative;
}

.features-section::before {
    content: '';
    position: absolute;
    top: -80px;
    left: 0;
    width: 100%;
    height: 100px;
    background: var(--bg-light);
    clip-path: polygon(0 0, 100% 0, 100% 40%, 0 100%);
    z-index: 1;
}

.process-section {
    position: relative;
}

.process-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: 0;
    width: 100%;
    height: 100px;
    background: var(--white);
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    z-index: 1;
}

.testimonials-section {
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: -80px;
    left: 0;
    width: 100%;
    height: 100px;
    background: var(--light-gray);
    clip-path: polygon(0 50%, 100% 0, 100% 100%, 0 100%);
    z-index: 1;
}

/* Smooth Gradient Transitions */
section {
    position: relative;
    transition: background 0.6s ease;
}

/* Enhanced Hover Effects */
.tab-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(139, 21, 56, 0.3);
}

.stat-card:hover {
    transform: translateY(-15px) rotateY(5deg);
    box-shadow: 0 20px 50px rgba(30, 58, 95, 0.3);
}

.feature-card:hover .feature-icon {
    transform: rotate(360deg) scale(1.2);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.benefit-item:hover .benefit-number {
    transform: scale(1.2) rotate(360deg);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Scroll Progress Indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(to right, var(--burgundy), var(--warm-gold), var(--deep-blue));
    z-index: 10000;
    transition: width 0.1s ease;
    box-shadow: 0 2px 10px rgba(139, 21, 56, 0.5);
}

/* Enhanced Scroll Animations */
@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-10deg) scale(0.9);
    }
    to {
        opacity: 1;
        transform: rotate(0) scale(1);
    }
}

/* Hover Effects for Cards */
.feature-card,
.benefit-item,
.testimonial-card {
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.feature-card:hover,
.testimonial-card:hover {
    transform: translateY(-15px) scale(1.02);
}

.benefit-item:hover {
    transform: translateX(5px) translateY(-5px);
    box-shadow: 0 8px 25px rgba(30, 58, 95, 0.2);
}

/* Mobile Responsive for New Sections */
@media (max-width: 1024px) {
    .timeline-line {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        transform: translateX(0) !important;
    }
    
    .timeline-content {
        width: calc(100% - 100px);
        margin-left: 80px !important;
    }
    
    .timeline-dot {
        left: 30px;
    }
    
    .cards-3d-container {
        gap: 2rem;
    }
    
    .morphing-stats {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .parallax-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .floating-card {
        width: 100%;
        max-width: 300px;
    }
    
    .card-3d {
        width: 100%;
        max-width: 320px;
    }
    
    .morphing-stats {
        flex-direction: column;
        gap: 3rem;
    }
}
