/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette */
    --primary-red: #dc2626;
    --primary-red-dark: #b91c1c;
    --primary-red-light: #ef4444;
    --black: #000000;
    --dark-gray: #1f2937;
    --gray: #6b7280;
    --light-gray: #f3f4f6;
    --white: #ffffff;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-padding: 0 20px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--gray);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-red-dark));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
}

.btn-secondary:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: translateY(-2px);
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all var(--transition-normal);
    border-bottom: 1px solid rgba(220, 38, 38, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo h2 {
    color: var(--primary-red);
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 2px;
    margin: 0;
}

.logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
    display: block;
    max-width: 200px;
    position: relative;
    z-index: 2;
}

.nav-logo {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-radius: 50px;
    padding: 10px 15px;
}

.logo-background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    border-radius: 50px;
    opacity: 1;
    transition: opacity 0.5s ease;
}

/* Fallback background while video loads */
.nav-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.3) 0%, rgba(248, 249, 250, 0.3) 100%);
    border-radius: 50px;
    z-index: 1;
    opacity: 0.5;
    transition: opacity 0.5s ease;
}

.logo-image {
    position: relative;
    z-index: 2;
    height: 50px;
    width: auto;
    object-fit: contain;
    display: block;
    max-width: 200px;
}

/* Hover effects for the logo */
.nav-logo:hover .logo-image {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.nav-logo:hover .logo-background-video {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-fast);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-red);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: width var(--transition-normal);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: var(--transition-fast);
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* ===== HERO SECTION ===== */
.hero {
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    overflow: hidden;
}

.hero-video {
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    min-width: 100%;
    min-height: 100%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.2) 0%, 
        rgba(220, 38, 38, 0.3) 50%, 
        rgba(0, 0, 0, 0.2) 100%);
    z-index: 2;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    text-align: center;
    position: relative;
    z-index: 3;
    height: 100vh;
    padding-bottom: 15vh;
}

.hero-content {
    color: var(--white);
}

.hero-title {
    margin-bottom: 2rem;
}

.hero-title-main {
    display: block;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    color: var(--white);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.9);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-title-sub {
    display: block;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--white);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-booking-form {
    margin-top: 2rem;
}

.hero-form {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-form input,
.hero-form select {
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    background: var(--dark-gray);
    color: var(--white);
    min-width: 150px;
}

.hero-form input::placeholder,
.hero-form select {
    color: rgba(255, 255, 255, 0.7);
}

.hero-form select option {
    background: var(--dark-gray);
    color: var(--white);
}

.hero-form .btn-primary {
    margin: 0;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-video-container {
    width: 100%;
    max-width: 600px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    background: var(--black);
    border: 2px solid var(--primary-red);
}

.hero-video {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center 30%;
    border-radius: 18px;
    display: block;
    /* Alternative positioning options - uncomment the one that works best: */
    /* object-position: center 20%; */ /* Moves framing up */
    /* object-position: center 40%; */ /* Moves framing down */
    /* object-position: 60% 30%; */ /* Moves framing right */
    /* object-position: 40% 30%; */ /* Moves framing left */
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(220, 38, 38, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    transition: all var(--transition-normal);
    opacity: 0;
}

.hero-video-container:hover .video-overlay {
    opacity: 1;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(220, 38, 38, 0.2));
}

/* Muted indicator */
.hero-video-container.muted::after {
    content: '🔇 Click to unmute';
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    z-index: 10;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.hero-video-container.muted:hover::after {
    opacity: 1;
}

.video-controls {
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-pause-btn {
    background: none;
    border: none;
    cursor: pointer;
    transition: transform var(--transition-normal);
    padding: 0;
}

.play-pause-btn:hover {
    transform: scale(1.1);
}

.mute-btn {
    background: none;
    border: none;
    cursor: pointer;
    margin-left: 10px;
    transition: transform var(--transition-fast);
}

.mute-btn:hover {
    transform: scale(1.1);
}

.play-icon,
.pause-icon {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-right: 3px solid var(--primary-red);
    border-bottom: 3px solid var(--primary-red);
    transform: rotate(45deg);
}

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

/* ===== SECTION STYLES ===== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    color: var(--black);
    margin-bottom: 1rem;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: var(--primary-red);
    margin: 0 auto;
    border-radius: 2px;
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: var(--section-padding);
    background: var(--light-gray);
}

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

.about-text h3 {
    color: var(--primary-red);
    margin-bottom: 1.5rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-red);
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-image {
    display: flex;
    justify-content: center;
}

.about-image-img {
    width: 400px;
    height: 500px;
    object-fit: contain;
    transition: all var(--transition-normal);
    background: transparent;
}

.about-image-img:hover {
    transform: scale(1.02);
}

.about-cta-button {
    margin-top: 2rem;
    text-align: center;
}

.about-cta-button .btn {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition-normal);
}

.about-cta-button .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
}

/* ===== ABOUT PAGE ===== */
.about-hero {
    padding: 120px 0 80px;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.about-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3);
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(220, 38, 38, 0.8) 0%, 
        rgba(185, 28, 28, 0.9) 50%, 
        rgba(220, 38, 38, 0.8) 100%);
    z-index: 2;
}

.about-hero-content {
    position: relative;
    z-index: 3;
}

.about-hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 3px;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.5s forwards;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.about-hero-title:hover {
    transform: translateY(-5px) scale(1.02);
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    color: #fff;
}

.about-hero-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--white);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.about-hero-title:hover::after {
    width: 100%;
}

.about-hero-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    opacity: 0;
    animation: fadeInUp 1s ease-out 1s forwards;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 10px 20px;
    border-radius: 25px;
    display: inline-block;
}

.about-hero-subtitle:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.about-hero-divider {
    width: 100px;
    height: 4px;
    background: var(--white);
    margin: 0 auto;
    border-radius: 2px;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.5s forwards;
}

/* Typing animation for text */
.typing-animation {
    overflow: hidden;
    border-right: 3px solid var(--white);
    white-space: nowrap;
    width: 0;
    animation: typing 3s steps(20, end) 0.5s forwards, blink-caret 0.75s step-end infinite;
}

.typing-animation-delay {
    overflow: hidden;
    border-right: 3px solid var(--white);
    white-space: nowrap;
    width: 0;
    animation: typing 3s steps(30, end) 1s forwards, blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: var(--white); }
}

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

.about-content-section {
    padding: var(--section-padding);
    background: var(--white);
}

.about-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    min-height: 600px;
}

.about-text-content h2 {
    color: var(--primary-red);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.about-text-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-red-dark));
    border-radius: 2px;
}

.about-text-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--gray);
    padding: 20px;
    border-radius: 10px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.about-text-content p::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(220, 38, 38, 0.05), 
        transparent);
    transition: left 0.6s ease;
    z-index: -1;
}

.about-text-content p:hover {
    transform: translateX(10px);
    background: linear-gradient(135deg, 
        rgba(220, 38, 38, 0.02), 
        rgba(220, 38, 38, 0.05));
    box-shadow: 0 5px 20px rgba(220, 38, 38, 0.1);
    border-left: 4px solid var(--primary-red);
}

.about-text-content p:hover::before {
    left: 100%;
}

.about-quote {
    font-size: 1.3rem !important;
    font-style: italic;
    color: var(--primary-red) !important;
    text-align: center;
    padding: 2rem;
    margin: 2rem 0 !important;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.05), rgba(220, 38, 38, 0.1));
    border-left: 4px solid var(--primary-red);
    border-radius: 8px;
    position: relative;
    transition: all 0.4s ease;
    cursor: pointer;
    overflow: hidden;
}

.about-quote::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 3rem;
    color: var(--primary-red);
    opacity: 0.3;
    font-family: serif;
    transition: all 0.4s ease;
}

.about-quote::after {
    content: '"';
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    font-size: 3rem;
    color: var(--primary-red);
    opacity: 0.3;
    font-family: serif;
    transition: all 0.4s ease;
}

.about-quote:hover {
    transform: translateY(-5px) scale(1.02);
    background: linear-gradient(135deg, 
        rgba(220, 38, 38, 0.1), 
        rgba(220, 38, 38, 0.15));
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.2);
    border-left: 6px solid var(--primary-red);
}

.about-quote:hover::before,
.about-quote:hover::after {
    opacity: 0.6;
    transform: scale(1.1);
}

.about-quote::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 3rem;
    color: var(--primary-red);
    opacity: 0.3;
    font-family: serif;
}

.about-quote::after {
    content: '"';
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    font-size: 3rem;
    color: var(--primary-red);
    opacity: 0.3;
    font-family: serif;
}

.about-images {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    height: 100%;
}

.about-image-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-normal);
    position: relative;
    flex: 1;
    min-height: 250px;
}

.about-image-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-red-dark));
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.about-image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.about-image-card:hover::before {
    transform: scaleX(1);
}

.about-speaking-img,
.about-professional-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    min-height: 200px;
}

.image-overlay-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4));
    color: var(--white);
    padding: 2.5rem 2rem 2rem;
    text-align: center;
    backdrop-filter: blur(5px);
}

.overlay-title {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.ethos-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.ethos-item h4 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.ethos-item p {
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
    color: var(--white);
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}

.questions-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.questions-list p {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    color: var(--white);
    line-height: 1.4;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.questions-list p:last-child {
    border-bottom: none;
}

.about-image-card {
    position: relative;
}

.about-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--light-gray), var(--white));
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
}

.about-cta:hover {
    background: linear-gradient(135deg, 
        rgba(220, 38, 38, 0.05), 
        rgba(220, 38, 38, 0.1));
}

.about-cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.about-cta-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(220, 38, 38, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(220, 38, 38, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.about-cta:hover .about-cta-particles {
    opacity: 1;
}

.about-cta-content {
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.about-cta-content.revealed {
    opacity: 1;
    transform: translateY(0);
}

.cta-title {
    color: var(--dark-gray);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-title:hover {
    color: var(--primary-red);
    transform: scale(1.05);
    text-shadow: 0 5px 15px rgba(220, 38, 38, 0.2);
}

.cta-description {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    transition: all 0.3s ease;
}

.cta-description:hover {
    color: var(--dark-gray);
    transform: translateY(-2px);
}

.cta-button {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    transform: translateY(0);
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(220, 38, 38, 0.4);
}

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

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

/* ===== SERVICES SECTION ===== */
.services {
    padding: var(--section-padding);
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-normal);
    border: 1px solid #e5e7eb;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-red-dark));
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card h3 {
    color: var(--dark-gray);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.service-image {
    text-align: center;
    margin-bottom: 1.5rem;
}

.service-photo {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--primary-red);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.2);
    transition: all var(--transition-normal);
}

.service-card:hover .service-photo {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(220, 38, 38, 0.3);
    border-color: var(--primary-red-dark);
}

/* Make photos look clickable */
.service-photo {
    cursor: pointer;
}

/* Image Modal */
.image-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    max-height: 90%;
    text-align: center;
}

.modal-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    transition: color var(--transition-fast);
}

.close-modal:hover {
    color: var(--primary-red);
}

/* ===== EXIT INTENT POPUP ===== */
.exit-intent-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 10000;
    animation: fadeIn 0.3s ease-out;
}

.exit-popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 100%);
    border: 3px solid var(--primary-red);
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 30px 60px rgba(220, 38, 38, 0.3);
    animation: slideIn 0.4s ease-out;
}

.exit-popup-header {
    position: relative;
    margin-bottom: 30px;
}

.exit-popup-title {
    color: var(--primary-red);
    font-size: 2.5rem;
    font-weight: 900;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    animation: pulse 2s infinite;
}

.exit-popup-close {
    position: absolute;
    top: -20px;
    right: -20px;
    background: var(--primary-red);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.exit-popup-close:hover {
    background: var(--primary-red-dark);
    transform: scale(1.1);
}

.exit-popup-body {
    color: var(--white);
}

.exit-popup-message {
    font-size: 1.3rem;
    margin-bottom: 15px;
    line-height: 1.6;
    font-weight: 500;
}

.exit-popup-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 30px;
    font-style: italic;
}

.exit-popup-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.exit-popup-btn {
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stay-btn {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.stay-btn:hover {
    background: var(--white);
    color: var(--black);
    transform: translateY(-2px);
}

.transform-btn {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-red-dark));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
}

.transform-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.6);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translate(-50%, -60%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.service-card h3 {
    color: var(--black);
    margin-bottom: 1rem;
}

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

.service-features li {
    padding: 0.5rem 0;
    color: var(--gray);
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: bold;
}

/* ===== PORTAL CARD ===== */
.portal-card {
    grid-column: 2 / -1;
    text-align: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.portal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.1), transparent);
    transition: left 0.5s ease;
}

.portal-card:hover::before {
    left: 100%;
}

.portal-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.2);
    border-color: var(--primary-red);
}

.portal-card:hover h3 {
    color: var(--primary-red);
    transform: scale(1.05);
    transition: all 0.3s ease;
}

.portal-card:hover p {
    color: var(--dark-gray);
    transition: color 0.3s ease;
}

.portal-card:hover .service-icon {
    transform: rotate(360deg) scale(1.2);
    transition: all 0.5s ease;
}

.portal-card:hover .service-features li {
    transform: translateX(5px);
    transition: transform 0.3s ease;
}

.portal-card:hover .service-features li::before {
    color: var(--primary-red);
    transform: scale(1.2);
    transition: all 0.3s ease;
}

.portal-cta {
    margin-top: 2rem;
    transition: all 0.3s ease;
}

.portal-card:hover .portal-cta {
    transform: translateY(-5px);
}

.portal-card .btn-primary {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.portal-card .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.portal-card:hover .btn-primary::before {
    left: 100%;
}

.portal-card:hover .btn-primary {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}

/* Mouse tracking effect */
.portal-card {
    background: linear-gradient(135deg, var(--white) 0%, #fafafa 100%);
}

.portal-card:hover {
    background: linear-gradient(135deg, #fff5f5 0%, var(--white) 100%);
}

/* ===== MR BEEZY IN ACTION ===== */
.mr-beezy-action {
    padding: var(--section-padding);
    background: var(--white);
}

.action-videos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.video-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-normal);
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.video-card h3 {
    padding: 1.5rem 1.5rem 1rem;
    margin: 0;
    color: var(--primary-red);
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
}

.action-video {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border: none;
    border-radius: 0 0 12px 12px;
}

/* Special styling for education video (vertical Instagram video) */
.education-video {
    object-fit: cover;
    object-position: center 30%; /* Move video up so head isn't cut off */
}

/* Fullscreen styles for vertical videos */
.education-video:fullscreen {
    object-fit: contain;
    object-position: center;
    background: black;
}

.education-video:-webkit-full-screen {
    object-fit: contain;
    object-position: center;
    background: black;
}

.education-video:-moz-full-screen {
    object-fit: contain;
    object-position: center;
    background: black;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    padding: var(--section-padding);
    background: var(--light-gray);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 2rem;
    font-size: 4rem;
    color: var(--primary-red);
    font-family: serif;
    opacity: 0.3;
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    color: var(--gray);
    line-height: 1.8;
    font-size: 1.1rem;
}

.testimonial-video {
    margin-bottom: 1.5rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all var(--transition-normal);
}

.testimonial-video iframe {
    width: 100%;
    height: 250px;
    border: none;
    border-radius: 15px;
}

.testimonial-card:hover .testimonial-video {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.testimonial-author {
    border-top: 1px solid #e5e7eb;
    padding-top: 1.5rem;
}

.author-info h4 {
    color: var(--black);
    margin-bottom: 0.25rem;
}

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

/* ===== CONTACT SECTION ===== */
.contact {
    padding: var(--section-padding);
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    color: var(--primary-red);
    margin-bottom: 1.5rem;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 10px;
}

.contact-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
}

.contact-item h4 {
    color: var(--black);
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: var(--gray);
    margin: 0;
}

.contact-form {
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: 15px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color var(--transition-fast);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.footer-section p {
    color: #d1d5db;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-section ul li a:hover {
    color: var(--primary-red);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: #d1d5db;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.social-link:hover {
    color: var(--primary-red);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;
    margin: 0;
}

/* ===== BRAND STRAPLINE SECTION ===== */
.brand-strapline {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--light-gray), var(--white));
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.brand-strapline-content {
    text-align: center;
}

.brand-strapline-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.brand-logos-container {
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    max-width: 1000px;
    height: 100px;
}

.brand-logos-container::before,
.brand-logos-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.brand-logos-container::before {
    left: 0;
    background: linear-gradient(to right, var(--light-gray) 0%, transparent 100%);
}

.brand-logos-container::after {
    right: 0;
    background: linear-gradient(to left, var(--light-gray) 0%, transparent 100%);
}

.brand-logos-track {
    display: flex;
    align-items: center;
    gap: 40px;
    animation: scroll-logos 30s linear infinite;
    width: max-content;
}

@keyframes scroll-logos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.brand-logo {
    flex: 0 0 auto;
    max-width: 120px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
    filter: grayscale(100%);
    opacity: 0.7;
}

.brand-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

.brand-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    width: auto;
    height: auto;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        backdrop-filter: blur(10px);
        border-top: 1px solid rgba(220, 38, 38, 0.2);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu .nav-item {
        margin: 1rem 0;
    }
    
    .nav-menu .nav-link {
        font-size: 1.2rem;
        padding: 1rem 0;
        display: block;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-form {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-form input,
    .hero-form select {
        min-width: 250px;
    }
    
        .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .about-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-images {
        order: -1;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
        .brand-logos-container {
        height: 80px;
    }

    .brand-logos-track {
        gap: 20px;
    }

    .brand-logo {
        max-width: 80px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-video-container {
        max-width: 350px;
    }
    
    .hero-video {
        height: 300px;
        object-position: center 25%;
    }
    
    .service-card,
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* ===== SCROLL ANIMATIONS ===== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ===== LOADING ANIMATION ===== */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--primary-red);
    border-top: 3px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===== SIMPLE BOOKING FORM ===== */
.booking-form-simple {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.booking-form-simple input {
    padding: 15px 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1rem;
    transition: all var(--transition-normal);
}

.booking-form-simple input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.booking-form-simple input:focus {
    outline: none;
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.2);
}

.booking-form-simple .cta-btn {
    margin-top: 1rem;
}

/* ===== ENHANCED BOOKING FORM ===== */
.booking-form-enhanced {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    max-width: 500px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
}

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

.form-header h3 {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin: 0;
}

.form-fields {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-fields input,
.form-fields textarea {
    padding: 15px 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1rem;
    transition: all var(--transition-normal);
    font-family: var(--font-primary);
}

.form-fields input::placeholder,
.form-fields textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-fields input:focus,
.form-fields textarea:focus {
    outline: none;
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.2);
}

.form-fields textarea {
    resize: vertical;
    min-height: 100px;
}

.form-fields select {
    padding: 15px 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1rem;
    transition: all var(--transition-normal);
    font-family: var(--font-primary);
    cursor: pointer;
}

.form-fields select:focus {
    outline: none;
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.2);
}

.form-fields select option {
    background: var(--dark-gray);
    color: var(--white);
} 