:root {
    --sc-blue: #1A365D; /* Deep Midnight Blue */
    --sc-dark-blue: #0A192F; /* Deepest Navy */
    --sc-gold: #C5A059; /* Sophisticated Champagne Gold */
    --sc-gold-light: #E2D1B3;
    --sc-light-blue: #F0F4F8;
    --sc-grey: #F8F9FA;
    --sc-text: #2D3748;
    --sc-white: #ffffff;
    --sc-border-radius: 8px; /* Sharper, more elegant corners */
    --sc-transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --sc-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', 'Prompt', sans-serif;
    color: var(--sc-text);
    line-height: 1.8;
    background-color: #ffffff;
    overflow-x: hidden;
}

/* Base Container */
.container {
    max-width: 1400px; /* Wider for a more expansive luxury feel */
    margin: 0 auto;
    padding: 0 40px;
}

/* --- Header --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    background: #ffffff;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

header.scrolled {
    background-color: var(--sc-blue);
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Top Bar */
.top-bar {
    background-color: var(--sc-dark-blue);
    color: white;
    font-size: 0.75rem;
    padding: 10px 0;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--sc-transition);
}

header.scrolled .top-bar {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-contact {
    display: flex;
    gap: 30px;
}

.top-contact a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.8;
    transition: var(--sc-transition);
}

.top-contact a:hover {
    opacity: 1;
    color: var(--sc-gold);
}

.top-social {
    display: flex;
    gap: 20px;
}

.top-social a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: var(--sc-transition);
}

.top-social a:hover {
    opacity: 1;
    color: var(--sc-gold);
}

/* Main Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    transition: var(--sc-transition);
}

header.scrolled nav {
    padding: 12px 0;
}

.logo {
    padding: 5px 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--sc-transition);
}

.logo-img {
    height: 110px;
    width: auto;
    filter: none;
    transition: height 0.4s ease;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

header.scrolled .logo {
    padding: 0;
}

header.scrolled .logo-img {
    height: 90px;
    filter: brightness(0) invert(1);
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin: 0 20px;
}

.nav-links a {
    text-decoration: none;
    color: var(--sc-blue);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--sc-transition);
    position: relative;
    padding-bottom: 5px;
}

header.scrolled .nav-links a {
    color: white;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1.5px;
    background: var(--sc-gold);
    transition: var(--sc-transition);
    transform: translateX(-50%);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--sc-gold) !important;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

/* Flag Switcher */
.lang-switcher {
    display: flex;
    gap: 10px;
}

.lang-switcher button {
    background: transparent;
    border: 1.5px solid rgba(26, 54, 93, 0.15);
    cursor: pointer;
    padding: 6px;
    border-radius: 6px;
    transition: var(--sc-transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lang-switcher button:hover {
    border-color: var(--sc-gold);
    transform: translateY(-2px);
    background: rgba(197, 160, 89, 0.05);
}

.lang-switcher button.active {
    border-color: var(--sc-gold);
    background: rgba(197, 160, 89, 0.1);
    box-shadow: 0 4px 12px rgba(197, 160, 89, 0.2);
}

header.scrolled .lang-switcher button {
    border-color: rgba(255, 255, 255, 0.25);
}

header.scrolled .lang-switcher button.active {
    border-color: var(--sc-gold);
    background: rgba(255, 255, 255, 0.1);
}

.flag-icon {
    width: 32px; /* Increased from 22px */
    height: 20px; /* Increased from 14px */
    display: block;
    object-fit: cover;
    border-radius: 2px;
    filter: none; /* Removed grayscale for better colors */
    transition: var(--sc-transition);
}

.lang-switcher button:hover .flag-icon {
    transform: scale(1.1);
}

/* --- Luxury Marquee --- */
.marquee-container {
    background-color: var(--sc-dark-blue);
    padding: 20px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    border-top: 1px solid rgba(197, 160, 89, 0.2);
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
    display: flex;
    align-items: center;
}

.marquee-content {
    display: inline-block;
    animation: marquee-scroll 40s linear infinite;
    padding-left: 100%;
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    color: white;
    font-family: 'Laksaman', 'Playfair Display', serif;
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.marquee-item .highlight {
    color: var(--sc-gold);
    font-weight: 700;
    margin: 0 15px;
}

.marquee-item .separator {
    margin: 0 60px;
    color: rgba(255, 255, 255, 0.2);
    font-weight: 300;
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.marquee-container:hover .marquee-content {
    animation-play-state: paused;
}

/* --- Hero Section --- */
.hero {
    padding: 0;
    background: var(--sc-dark-blue);
}

.hero-banner {
    width: 100%;
    height: 100vh; /* Full screen luxury */
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-vdo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.6; /* More dramatic */
}

.hero-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10, 25, 47, 0.4), rgba(10, 25, 47, 0.8));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    max-width: 1000px;
    padding: 0 40px;
    animation: fadeInUp 1.5s ease-out;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

h1, h2, h3, h4, .section-title, .section-title-sub, .partner-name, .stat-number, .stat-number-static, .about-tagline, .cta-button, .submit-btn, strong, b {
    font-family: 'Laksaman', 'Playfair Display', 'Prompt', serif;
    font-weight: 700;
}

h1 {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 30px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 50px;
    opacity: 0.8;
    letter-spacing: 1px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Kinetic Luxury Animations --- */

/* Ken Burns (Slow Zoom) */
@keyframes kenBurns {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}

.ken-burns {
    animation: kenBurns 20s ease-in-out infinite alternate;
}

/* Sophisticated Reveal (Expensive Easing) */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1.2s cubic-bezier(0.2, 1, 0.3, 1);
    will-change: transform, opacity;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered Reveal Utilities */
.reveal-stagger > * {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1.2s cubic-bezier(0.2, 1, 0.3, 1);
}

.reveal-stagger.active > * {
    opacity: 1;
    transform: translateY(0);
}

/* Delays for Staggered Children */
.delay-100 { transition-delay: 0.1s !important; }
.delay-200 { transition-delay: 0.2s !important; }
.delay-300 { transition-delay: 0.3s !important; }
.delay-400 { transition-delay: 0.4s !important; }
.delay-500 { transition-delay: 0.5s !important; }
.delay-600 { transition-delay: 0.6s !important; }
.delay-700 { transition-delay: 0.7s !important; }
.delay-800 { transition-delay: 0.8s !important; }

/* Shimmer Effect for Buttons */
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.cta-button {
    display: inline-block;
    padding: 22px 50px;
    background: linear-gradient(90deg, var(--sc-gold), #D4AF37, var(--sc-gold));
    background-size: 200% auto;
    color: white !important;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    border-radius: 50px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 35px rgba(197, 160, 89, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.5s;
    z-index: -1;
}

.cta-button:hover {
    background-position: right center;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(197, 160, 89, 0.5);
    border-color: rgba(255, 255, 255, 0.5);
    color: white !important;
}

.cta-button:hover::before {
    left: 100%;
    transition: 0.6s;
}

/* --- PM ASRS Section --- */
.asrs-pm-container {
    margin-top: 100px;
    padding-top: 80px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.section-title-sub {
    font-family: 'Laksaman', 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--sc-dark-blue);
    margin-bottom: 20px;
    text-align: center;
}

.pm-slider-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 60px 0;
    background: #fcfdff;
    position: relative;
    cursor: grab;
    user-select: none;
}

.pm-slider-wrapper:active {
    cursor: grabbing;
}

.pm-slider-track {
    display: flex;
    gap: 30px;
    padding: 0 40px;
    transition: transform 0.1s ease-out; /* Smooth follow for dragging */
}

.pm-slide {
    width: 500px; /* Much larger images */
    height: 600px;
    flex-shrink: 0;
}

.pm-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    transition: transform 0.5s ease;
    border: 8px solid white;
    pointer-events: none; /* Prevents default image drag */
}

.pm-slide:hover img {
    transform: scale(1.02);
}

.slider-hint {
    text-align: center;
    color: var(--sc-gold);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-top: -30px;
    margin-bottom: 40px;
    text-transform: uppercase;
}

@media (max-width: 1024px) {
    .pm-slide { width: 400px; height: 500px; }
}

@media (max-width: 768px) {
    .section-title-sub { font-size: 2rem; }
    .pm-slide { width: 300px; height: 400px; }
}

/* --- Content Sections --- */
section {
    padding: 120px 0; /* More balanced density */
    position: relative;
    border-bottom: none; 
    overflow: hidden; /* To contain background watermarks */
}

/* Background Watermark Decorative Text */
.bg-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Laksaman', 'Playfair Display', serif;
    font-size: 15rem;
    font-weight: 900;
    color: var(--sc-dark-blue);
    opacity: 0.03;
    letter-spacing: 20px;
    z-index: 0;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
    text-transform: uppercase;
}

/* Gold Offset Frame for Images */
.gold-offset-frame {
    position: relative;
    display: inline-block;
}

.gold-offset-frame::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--sc-gold);
    z-index: -1;
    transition: var(--sc-transition);
}

.gold-offset-frame:hover::before {
    top: 10px;
    left: 10px;
}

.section-title {
    font-family: 'Laksaman', 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--sc-dark-blue);
    margin-bottom: 80px;
    text-align: center;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--sc-gold);
    margin: 25px auto 0;
}

/* --- ASRS Section Refined --- */
.section-header-centered {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px auto;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #718096;
    letter-spacing: 1px;
    margin-bottom: 40px;
}

/* Adjusting the main section titles that need the negative margin look */
.section-title + .section-subtitle {
    margin-top: -60px;
}

/* PM Section Title Specifics */
.asrs-pm-container .section-title-sub {
    margin-top: 40px;
}

.asrs-pm-container .section-subtitle {
    margin-top: 0;
    margin-bottom: 60px;
}

.asrs-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.asrs-card {
    background: white;
    border-radius: 0;
    overflow: hidden;
    box-shadow: var(--sc-shadow);
    display: flex;
    flex-direction: column;
    transition: var(--sc-transition);
    border-bottom: 4px solid transparent;
    cursor: pointer;
    position: relative;
}

.asrs-card:hover {
    transform: translateY(-15px);
    border-color: var(--sc-gold);
}

.asrs-img-wrapper {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.card-hover-info {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(10, 25, 47, 0.9);
    color: var(--sc-gold);
    padding: 6px 12px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 2px;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.4s ease;
    z-index: 10;
    pointer-events: none;
    border: 1px solid var(--sc-gold);
}

.asrs-card:hover .card-hover-info {
    opacity: 1;
    transform: translateY(0);
}

.asrs-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s cubic-bezier(0.2, 1, 0.3, 1);
}

.asrs-card:hover .asrs-img-wrapper img {
    transform: scale(1.1);
}

.asrs-content {
    padding: 30px;
    text-align: center;
    background: white;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.asrs-content h3 {
    font-family: 'Laksaman', 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--sc-dark-blue);
    margin: 0;
    line-height: 1.4;
    transition: var(--sc-transition);
}

.view-details-btn {
    margin-top: 15px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--sc-gold);
    letter-spacing: 2px;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--sc-transition);
}

.asrs-card:hover .view-details-btn {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1200px) {
    .asrs-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .asrs-container {
        grid-template-columns: 1fr;
    }
    .asrs-img-wrapper { height: 300px; }
}

.asrs-features {
    list-style: none;
    padding: 0;
}

.asrs-features li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-weight: 500;
    color: var(--sc-dark-blue);
}

.asrs-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--sc-gold);
    font-weight: bold;
}

/* --- About Us Refined --- */
.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-tagline {
    display: block;
    color: var(--sc-gold);
    font-weight: 600;
    letter-spacing: 4px;
    margin-bottom: 15px;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.about-description {
    font-size: 1.2rem;
    color: #4A5568;
    margin-bottom: 50px;
    line-height: 2;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.stat-item {
    padding: 30px 20px;
    text-align: center;
    border: 1px solid var(--sc-grey);
    transition: var(--sc-transition);
    background: white; /* Ensure background is solid during reveal */
    min-height: 160px; /* Lock height */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-item:hover {
    background: var(--sc-dark-blue);
    border-color: var(--sc-dark-blue);
}

.stat-item:hover .stat-number, 
.stat-item:hover .stat-number-suffix,
.stat-item:hover .stat-number-static { 
    color: var(--sc-gold); 
}
.stat-item:hover .stat-label { color: white; }

.stat-value {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin-bottom: 5px;
}

.stat-number, .stat-number-static {
    display: inline-block;
    font-family: 'Laksaman', 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--sc-dark-blue);
    line-height: 1.2;
    transition: var(--sc-transition);
    font-variant-numeric: tabular-nums; /* Prevent numbers from bouncing */
    min-width: 1.2ch; /* Basic width lock for counting */
    text-align: center;
}

.stat-number-suffix {
    font-family: 'Laksaman', 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--sc-dark-blue);
    margin-left: 5px;
    transition: var(--sc-transition);
}

.stat-label {
    font-size: 0.75rem;
    color: #718096;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--sc-transition);
}

.about-visuals {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-image-main {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    box-shadow: var(--sc-shadow);
    border: 1px solid var(--sc-grey);
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    cursor: pointer;
}

.play-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(26, 54, 93, 0.7);
    color: var(--sc-gold);
    padding: 20px 30px;
    border-radius: 50px;
    text-align: center;
    backdrop-filter: blur(5px);
    border: 1px solid var(--sc-gold);
    transition: all 0.3s ease;
    z-index: 5;
    pointer-events: none;
    opacity: 0.8;
}

.about-image-main:hover .play-button-overlay {
    background: var(--sc-gold);
    color: var(--sc-blue);
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.play-button-overlay i {
    font-size: 2rem;
}

.about-vdo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1.2s cubic-bezier(0.2, 1, 0.3, 1);
}

.about-video-floating {
    position: relative;
    border-radius: 0;
    box-shadow: var(--sc-shadow);
    border: 1px solid var(--sc-grey);
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #000;
    cursor: pointer;
}

.about-video-floating:hover .play-button-overlay {
    background: var(--sc-gold);
    color: var(--sc-blue);
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

/* --- Technical Specifications --- */
.tech-specs-section {
    background-color: var(--sc-white);
}

.specs-dashboard {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.spec-card {
    background: #fcfdff;
    padding: 40px 30px;
    border: 1px solid var(--sc-grey);
    text-align: center;
    transition: var(--sc-transition);
}

.spec-card:hover {
    background: white;
    border-color: var(--sc-gold);
    box-shadow: var(--sc-shadow);
    transform: translateY(-10px);
}

.spec-icon {
    font-size: 2.5rem;
    margin-bottom: 25px;
    display: block;
}

.spec-card h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #718096;
    margin-bottom: 15px;
}

.spec-value {
    font-family: 'Laksaman', 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--sc-dark-blue);
    margin-bottom: 10px;
}

.spec-detail {
    font-size: 0.85rem;
    color: #A0AEC0;
}

/* --- Gallery Section --- */
.facility-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.gallery-item {
    position: relative;
    height: 400px;
    overflow: hidden;
    background: var(--sc-dark-blue);
    transform-style: preserve-3d;
    perspective: 1000px;
    isolation: isolate;
}

.gallery-item img, .gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.2, 1, 0.3, 1);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
    will-change: transform;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 25, 47, 0.9), transparent);
    display: flex;
    align-items: flex-end;
    padding: 40px;
    opacity: 0;
    transition: var(--sc-transition);
    pointer-events: none; /* Ensure overlay doesn't flicker hover */
    z-index: 2;
}

.gallery-overlay span {
    color: var(--sc-gold);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.85rem;
    transform: translateY(20px);
    transition: transform 0.6s ease;
}

.gallery-item:hover img, .gallery-item:hover video {
    transform: scale(1.08) translateZ(0);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}

@media (max-width: 992px) {
    .facility-gallery { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
    .facility-gallery { grid-template-columns: 1fr; }
}

/* --- Services Refined --- */
#services { background-color: #fcfdff; }

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 120px;
}

.service-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: white;
    border-radius: 0;
    overflow: hidden;
    box-shadow: var(--sc-shadow);
    align-items: center; /* Center content vertically */
}

.service-card:first-child .service-img-header {
    padding: 30px; /* Reduced padding to allow image to be larger */
    background: #fcfdff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 600px; /* Force height to match other items */
}

.service-card:first-child .service-img-header img {
    height: auto;
    max-height: 100%;
    width: auto;
    max-width: 100%;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15); /* Stronger shadow for larger image */
    border: 1px solid var(--sc-grey);
    transform: scale(1.1); /* Subtle scale up */
}

.service-card:nth-child(even) { direction: rtl; }
.service-card:nth-child(even) > * { direction: ltr; }

.service-img-header {
    height: 600px;
    overflow: hidden;
}

.service-img-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.2, 1, 0.3, 1);
}

.service-card:hover .service-img-header img {
    transform: scale(1.05);
}

.service-info {
    padding: 100px 80px;
}

.service-card h3 {
    font-family: 'Laksaman', 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--sc-dark-blue);
    margin-bottom: 40px;
}

.service-card p {
    font-size: 1.15rem;
    line-height: 2;
    color: #4A5568;
}

.partners-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.partner-card {
    background: white;
    padding: 60px 40px;
    border: 1px solid var(--sc-grey);
    text-align: center;
    transition: var(--sc-transition);
    width: 400px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.partner-card:hover {
    border-color: var(--sc-gold);
    transform: translateY(-10px);
    box-shadow: var(--sc-shadow);
}

.partner-card::after {
    content: 'View Details';
    position: absolute;
    bottom: -40px;
    left: 0;
    width: 100%;
    background: var(--sc-gold);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 10px 0;
    transition: var(--sc-transition);
}

.partner-card:hover::after {
    bottom: 0;
}

.partner-logo-wrapper {
    height: 120px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.partner-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: var(--sc-transition);
}

.partner-card:hover .partner-logo {
    transform: scale(1.05);
}

.partner-name {
    font-family: 'Laksaman', 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--sc-dark-blue);
    margin: 0;
}

/* --- Standards Section --- */
.standards-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.standard-card {
    background: white;
    width: 380px;
    border-radius: 0;
    padding: 60px 40px;
    border: 1px solid var(--sc-grey);
    text-align: center;
    transition: var(--sc-transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.standard-card:hover {
    border-color: var(--sc-gold);
    transform: translateY(-10px);
    box-shadow: var(--sc-shadow);
}

.standard-card::after {
    content: 'View Details';
    position: absolute;
    bottom: -40px;
    left: 0;
    width: 100%;
    background: var(--sc-gold);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 10px 0;
    transition: var(--sc-transition);
}

.standard-card:hover::after {
    bottom: 0;
}

.standard-img-wrapper {
    width: 100%;
    height: 160px;
    background: #fcfdff;
    padding: 30px;
    border-radius: 0;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.standard-img-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.standard-card h3 {
    font-family: 'Laksaman', 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--sc-dark-blue);
}

/* --- Process Flow Refined --- */
.process-section {
    background-color: var(--sc-white);
    padding: 140px 0;
    position: relative;
    overflow: hidden;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    margin-top: 60px;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 45px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--sc-gold), transparent);
    z-index: 0;
}

.process-step {
    text-align: center;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.step-icon-wrapper {
    width: 90px;
    height: 90px;
    background: white;
    border: 1px solid var(--sc-grey);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2rem;
    color: var(--sc-dark-blue);
    box-shadow: var(--sc-shadow);
    transition: var(--sc-transition);
    position: relative;
}

.process-step:hover .step-icon-wrapper {
    background: var(--sc-dark-blue);
    color: var(--sc-gold);
    transform: translateY(-10px) rotateY(180deg);
    border-color: var(--sc-gold);
}

.step-number {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 30px;
    height: 30px;
    background: var(--sc-gold);
    color: white;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-step h4 {
    font-family: 'Laksaman', 'Playfair Display', serif;
    font-size: 1.25rem;
    color: var(--sc-dark-blue);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.process-step p {
    font-size: 0.95rem;
    color: #718096;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .process-grid {
        grid-template-columns: 1fr 1fr;
        gap: 60px 0;
    }
    .process-grid::before { display: none; }
}

@media (max-width: 640px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Production Section Refined --- */
.production-section {
    background-color: var(--sc-white);
    padding: 160px 0;
}

.production-text-header {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 80px auto;
}

.production-main-desc {
    margin-top: 40px;
}

.production-main-desc p {
    font-size: 1.5rem;
    color: var(--sc-dark-blue);
    line-height: 1.6;
    font-weight: 500;
}

/* --- Production Media Grid --- */
.production-media-grid {
    display: flex;
    gap: 30px;
    margin-bottom: 80px;
    align-items: stretch;
}

.production-video-wrapper, .production-image-wrapper {
    position: relative;
    flex: 1;
    height: 550px;
    overflow: hidden;
    box-shadow: var(--sc-shadow);
    background: var(--sc-dark-blue);
    transition: flex 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
    will-change: flex;
    transform: translateZ(0); /* Hardware acceleration */
}

.production-video-wrapper:hover, .production-image-wrapper:hover {
    flex: 2.2; /* Slightly reduced for better performance */
    z-index: 10;
}

.production-video-element {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
    transform: translateZ(0);
}

.production-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    transform: translateZ(0);
}

.production-image-wrapper:hover img {
    transform: scale(1.05);
}

.expand-hint {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(10, 25, 47, 0.7);
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    opacity: 0;
    transition: var(--sc-transition);
    pointer-events: none;
    border: 1px solid var(--sc-gold);
    z-index: 10;
}

.production-video-wrapper:hover .expand-hint {
    opacity: 1;
}

.media-badge {
    position: absolute;
    bottom: 25px;
    left: 25px;
    background: var(--sc-gold);
    color: white;
    padding: 8px 20px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    z-index: 5;
}

@media (max-width: 1024px) {
    .production-media-grid {
        flex-direction: column;
    }
    .production-video-wrapper, .production-image-wrapper {
        height: 400px;
        flex: none;
    }
    .production-video-wrapper:hover, .production-image-wrapper:hover {
        flex: none;
        transform: translateY(-5px);
    }
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.solution-card {
    background: #fcfdff;
    padding: 50px 30px;
    border: 1px solid var(--sc-grey);
    transition: var(--sc-transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 40px;
    height: 40px;
    background: var(--sc-gold);
    opacity: 0.1;
    transform: rotate(45deg);
    transition: var(--sc-transition);
}

.solution-card:hover::before {
    opacity: 0.3;
    transform: rotate(90deg) scale(1.5);
}

.solution-card:hover {
    background: white;
    border-color: var(--sc-gold);
    box-shadow: var(--sc-shadow);
    transform: translateY(-10px);
}

.solution-line {
    width: 30px;
    height: 2px;
    background: var(--sc-gold);
    margin: 0 auto 25px;
}

.solution-card h4 {
    font-size: 1.1rem;
    color: var(--sc-dark-blue);
    font-weight: 600;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Background Pattern for Dark Sections */
.bg-pattern-luxury {
    background-image: radial-gradient(var(--sc-gold) 0.5px, transparent 0.5px);
    background-size: 30px 30px;
    opacity: 0.05;
    position: absolute;
    inset: 0;
    pointer-events: none;
}

/* --- Why Us Section Refined --- */
.why-us {
    background-color: var(--sc-dark-blue);
    color: white;
    position: relative;
    overflow: hidden;
}

.why-us .section-title {
    color: white;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    position: relative;
    z-index: 1;
}

.why-item {
    display: flex;
    gap: 40px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--sc-transition);
    backdrop-filter: blur(5px);
}

.why-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--sc-gold);
    transform: translateX(10px);
}

.why-item .num {
    font-family: 'Laksaman', 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--sc-gold);
    opacity: 0.5;
    line-height: 1;
}

.why-item h4 {
    font-family: 'Laksaman', 'Playfair Display', serif;
    font-size: 1.8rem;
    color: white;
    margin-bottom: 20px;
}

.why-item p {
    color: #CBD5E0;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* --- Location Advantages Refined --- */
.location-advantage-section {
    background-color: var(--sc-white);
}

.location-advantage-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.advantage-item {
    background: white;
    padding: 35px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 30px;
    border: 1px solid var(--sc-grey);
    transition: var(--sc-transition);
}

.advantage-item:hover {
    border-color: var(--sc-gold);
    transform: translateX(15px);
    box-shadow: var(--sc-shadow);
}

.advantage-icon {
    font-size: 2rem;
    color: var(--sc-gold);
}

.advantage-text strong {
    display: block;
    color: var(--sc-dark-blue);
    font-size: 1.3rem;
    font-family: 'Laksaman', 'Playfair Display', serif;
    margin-bottom: 5px;
}

.advantage-text span {
    font-size: 1rem;
    color: #718096;
}

.advantage-summary {
    padding: 60px;
    background: #fcfdff;
    border-left: 5px solid var(--sc-gold);
}

/* --- Form Refined --- */
.contact-form-section {
    background-color: #f8fbff;
}

.contact-form {
    max-width: 1000px;
    margin: 0 auto;
}

.form-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

input, textarea {
    padding: 20px 30px;
    border: 1px solid #E2E8F0;
    background: white;
    width: 100%;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: var(--sc-text);
    transition: var(--sc-transition);
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--sc-gold);
}

.submit-btn {
    background: var(--sc-dark-blue);
    color: white;
    border: 1px solid var(--sc-dark-blue);
    padding: 22px 60px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    cursor: pointer;
    transition: var(--sc-transition);
    margin-top: 20px;
}

.submit-btn:hover {
    background: var(--sc-gold);
    border-color: var(--sc-gold);
    transform: translateY(-5px);
}

/* --- Map Refined --- */
.map-grid {
    display: flex;
    gap: 30px;
    align-items: stretch;
    min-height: 550px;
}

.map-container, .map-custom-image {
    flex: 1;
    height: 550px;
    box-shadow: var(--sc-shadow);
    overflow: hidden;
    transition: flex 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s ease;
    cursor: pointer;
}

.map-container:hover, .map-custom-image:hover {
    flex: 2.5; /* Expands the hovered item */
    z-index: 10;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-custom-image {
    background: white;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--sc-grey);
}

.map-custom-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 1s ease;
}

.map-custom-image:hover img {
    transform: scale(1.02);
}

@media (max-width: 1024px) {
    .map-grid {
        flex-direction: column;
        min-height: auto;
    }
    .map-container, .map-custom-image {
        height: 450px;
        flex: none;
    }
    .map-container:hover, .map-custom-image:hover {
        flex: none;
        transform: translateY(-5px);
    }
}

/* --- Footer --- */
footer {
    background: var(--sc-dark-blue);
    padding: 120px 0 60px;
    color: white;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: start;
}

footer h3 {
    font-family: 'Laksaman', 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--sc-gold);
    margin-bottom: 30px;
}

footer p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.footer-social a {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
}

.footer-social a:hover {
    background: var(--sc-gold);
    border-color: var(--sc-gold);
    color: white;
}

/* --- Modal Styles --- */
.modal {
    display: none;
    position: fixed;
    z-index: 3000; /* Higher than header */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(10, 25, 47, 0.9);
    backdrop-filter: blur(10px);
}

.modal-content {
    background-color: #ffffff;
    margin: 5% auto;
    padding: 60px;
    width: 90%;
    max-width: 900px;
    position: relative;
    box-shadow: 0 50px 100px rgba(0,0,0,0.3);
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-content.active {
    opacity: 1;
    transform: translateY(0);
}

.close-modal {
    color: var(--sc-dark-blue);
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 35px;
    font-weight: 300;
    cursor: pointer;
    transition: var(--sc-transition);
    opacity: 0.5;
    z-index: 10;
}

.close-modal:hover {
    opacity: 1;
    color: var(--sc-gold);
    transform: rotate(90deg);
}

.modal-body {
    text-align: center;
}

.modal-img-container {
    width: 100%;
    height: 450px;
    margin: 0 auto 40px;
    background: #fcfdff;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--sc-grey);
    overflow: hidden;
}

.modal-img-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.modal-body h2 {
    font-family: 'Laksaman', 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--sc-dark-blue);
    margin-bottom: 20px;
}

.modal-body p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #4A5568;
    margin-bottom: 40px;
    text-align: left;
}

.modal-features {
    text-align: left;
    background: #fcfdff;
    padding: 40px;
    border: 1px solid var(--sc-grey);
}

.modal-features h4 {
    font-family: 'Laksaman', 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--sc-dark-blue);
}

.modal-features ul {
    list-style: none;
    padding: 0;
}

.modal-features li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    font-weight: 500;
}

.modal-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--sc-gold);
}

/* Video Modal Specifics */
.video-modal-content {
    background-color: #000;
    max-width: 1100px;
    padding: 40px 10px 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

#modal-youtube {
    aspect-ratio: 16 / 9;
    height: auto;
    min-height: 300px;
    background: #000;
}

.video-modal .close-modal {
    color: white;
}

/* --- Utility Classes --- */
.bg-light { background-color: #f8fbff; }
.bg-white { background-color: #ffffff; }

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--sc-gold);
    z-index: 2001;
    transition: width 0.1s;
}

/* Social Icons in Footer */
.footer-social {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--sc-transition);
    overflow: hidden;
    padding: 10px;
}

.footer-social a:hover {
    background: var(--sc-gold);
    border-color: var(--sc-gold);
    transform: translateY(-5px);
}

.footer-social a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1); /* Make icons white */
}

/* --- Responsive Adaptations --- */
.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--sc-blue);
    cursor: pointer;
    transition: var(--sc-transition);
}

header.scrolled .mobile-menu-toggle {
    color: white;
}

@media (max-width: 1024px) {
    .container { padding: 0 25px; }
    header { padding: 5px 0; }
    .top-bar { display: none; } /* Hide top bar on smaller screens for cleaner UI */
    
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.6);
        z-index: 1500; /* Below header/menu */
        display: none;
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
    }

    .mobile-menu-overlay.active {
        display: block;
    }

    header {
        z-index: 2000; /* Above overlay */
    }

    .mobile-menu-toggle {
        display: block;
        position: relative;
        z-index: 2200; /* Above everything else */
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 30px rgba(0,0,0,0.2);
        z-index: 2100; /* Highest */
        padding: 40px 20px;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 20px 0;
    }

    .nav-links a {
        color: var(--sc-blue) !important;
        font-size: 1.1rem;
    }

    .hero h1 { font-size: 3rem; }
    .hero p { font-size: 1rem; }
    
    .section-title { font-size: 2.5rem; margin-bottom: 50px; }
    .section-title + .section-subtitle { margin-top: -30px; }

    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-visuals { order: -1; }
    .about-description { font-size: 1.1rem; }
    
    .asrs-container, .why-grid, .location-advantage-grid, .map-grid { 
        grid-template-columns: 1fr !important; 
        gap: 40px; 
    }
    
    .advantage-item {
        flex-direction: column;
        text-align: center;
        padding: 40px 25px;
        margin-bottom: 20px;
    }

    .advantage-icon {
        margin-bottom: 20px;
        font-size: 2.5rem;
    }

    .advantage-text strong {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .advantage-text span {
        font-size: 1.1rem;
        line-height: 1.6;
    }

    .advantage-summary {
        padding: 40px 25px;
        margin-top: 20px;
    }
    
    .why-item { 
        flex-direction: column; 
        gap: 20px; 
        text-align: center; 
        padding: 30px 20px;
    }

    .why-item .num {
        font-size: 3rem;
        margin-bottom: 10px;
    }

    .why-item h4 {
        font-size: 1.5rem;
    }
    
    .service-card { grid-template-columns: 1fr !important; margin-bottom: 40px; }
    .service-card:nth-child(even) { direction: ltr; }
    .service-img-header { height: 300px; }
    
    .service-card:first-child .service-img-header {
        height: 300px;
        padding: 20px;
    }

    .service-info { 
        padding: 35px 25px; 
        text-align: center;
    }

    .service-card h3 {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 25px;
        word-break: keep-all; /* Better for Thai text wrapping */
    }

    .service-card p {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .solution-grid { grid-template-columns: repeat(2, 1fr); }
    
    .pm-slide { width: 85vw; height: 450px; }
    
    .advantage-summary { border-left: none; border-top: 5px solid var(--sc-gold); padding: 30px; }

    .modal-content { padding: 40px 20px; width: 95%; margin: 10% auto; }
    .modal-body h2 { font-size: 2rem; }
    .modal-img-container { height: 300px; }
}

@media (max-width: 768px) {
    .hero h1 { font-size: 2.2rem; }
    .logo-img { height: 80px; }
    header.scrolled .logo-img { height: 60px; }
    
    .about-stats-grid { grid-template-columns: 1fr; gap: 20px; }
    .stat-item { padding: 30px 20px; min-height: auto; }
    .stat-number, .stat-number-static { font-size: 2.2rem; }
    .stat-label { font-size: 1rem; }
    
    .facility-gallery { grid-template-columns: 1fr; }
    
    .form-group { grid-template-columns: 1fr; gap: 15px; }
    
    .footer-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .footer-social { justify-content: center; }
}
