/* 
   Theme: Wisuth Thawornratana - Premium Executive (Light)
   Colors: Deep Blue (#0A1A3F), Gold (#D4AF37), White (#FFFFFF)
   Fonts: Inter, Manrope
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Manrope:wght@400;500;700;800&family=Noto+Sans+Thai:wght@300;400;500;600;700&family=Noto+Sans+SC:wght@300;400;500;700&display=swap');

:root {
    --primary-blue: #0A1A3F;
    --accent-gold: #D4AF37;
    --bg-white: #FFFFFF;
    --bg-light-grey: #F8F9FA;
    --text-dark: #1A1A1A;
    --text-grey: #555555;
    --text-light-grey: #888888;

    --shadow-soft: 0 10px 40px rgba(10, 26, 63, 0.05);
    --shadow-hover: 0 20px 50px rgba(10, 26, 63, 0.1);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 18px;
    /* Increased base size from default 16px */
}

body {
    font-family: 'Inter', 'Noto Sans Thai', 'Noto Sans SC', sans-serif;
    background-color: var(--bg-white);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    background-image: url('images/light-ai-bg.png');
    background-size: cover;
    background-attachment: fixed;
    background-blend-mode: multiply;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Manrope', 'Noto Sans Thai', 'Noto Sans SC', sans-serif;
    color: var(--primary-blue);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 6rem 0;
}

.text-gold {
    color: var(--accent-gold);
}

.text-blue {
    color: var(--primary-blue);
}

.text-center {
    text-align: center;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 4px;
    /* Slightly rounded, executive feel */
    letter-spacing: 0.5px;
    transition: var(--transition);
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--primary-blue);
    color: #ffffff !important;
    /* Force white text with hex code */
    -webkit-text-fill-color: #ffffff !important;
    /* Webkit override */
    border: 1px solid var(--primary-blue);
    box-shadow: 0 4px 15px rgba(10, 26, 63, 0.2);
}

.btn-primary:hover {
    background-color: #152c5e;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(10, 26, 63, 0.3);
}

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

.btn-secondary:hover {
    background-color: var(--primary-blue);
    color: #fff;
}

.btn-gold {
    background-color: var(--accent-gold);
    color: #fff;
    border: 1px solid var(--accent-gold);
}

.btn-gold:hover {
    background-color: #bfa030;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    /* Reduced vertical padding */
    border-bottom: 1px solid rgba(10, 26, 63, 0.05);
}

.navbar .container {
    padding: 0 1rem;
    /* Reduce side padding to 1rem to give more space */
    max-width: 100%;
    /* Allow full width usage if needed */
}

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

.logo {
    font-family: 'Manrope', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-blue);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 0.8rem;
    /* Aggressively reduced from 1.2rem */
    align-items: center;
}

.nav-links a {
    font-size: 0.9rem;
    /* Reduced to 0.9rem */
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    white-space: nowrap;
    /* Prevent text wrapping */
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-blue);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-gold);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Specific override for Navbar Button to save space */
.navbar .btn-primary {
    padding: 0.4rem 1rem !important;
    font-size: 0.85rem !important;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown:hover .dropdown-content {
    display: block !important;
    /* Force display on hover */
    animation: fadeIn 0.2s ease-in-out;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #ffffff;
    min-width: 180px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    border-radius: 8px;
    padding: 0.5rem 0;
    top: 100%;
    /* Position directly below the parent */
    left: 50%;
    transform: translateX(-50%);
    margin-top: 0;
    /* Remove margin to close the gap */
    padding-top: 0.5rem;
    /* Add padding inside instead */
}

/* Invisible bridge to prevent mouse from losing hover state */
.dropdown:hover::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 20px;
    /* Height of the gap */
    background: transparent;
}

.dropdown-content a {
    color: var(--text-dark);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 0.95rem;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.dropdown-content a:hover {
    background-color: rgba(10, 26, 63, 0.05);
    color: var(--primary-blue);
}

/* Removed duplicate rule */

/* Add arrow to dropdown trigger */
.dropdown>a::after {
    content: '\f107' !important;
    /* FontAwesome Down Arrow */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-left: 0.4rem;
    font-size: 0.8em;
    border: none !important;
    position: static !important;
    width: auto !important;
    height: auto !important;
    background: none !important;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* Language Switcher */
.lang-switch {
    display: flex;
    gap: 0.4rem;
    /* Tighter gap */
    margin-left: 0.8rem;
    /* Reduced margin */
    padding-left: 0.8rem;
    /* Reduced padding */
    border-left: 1px solid #ddd;
    align-items: center;
}

.lang-switch a {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    /* Fixed width */
    height: 24px;
    /* Fixed height */
    border-radius: 50%;
    transition: var(--transition);
    overflow: hidden;
    /* Ensure flag stays in circle */
}

.lang-switch .fi {
    font-size: 24px;
    /* Ensure flag fills the circle */
    line-height: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lang-switch a:hover,
.lang-switch a.active {
    transform: scale(1.1);
    box-shadow: 0 0 0 2px var(--primary-blue);
}

.fi {
    width: 24px !important;
    height: 24px !important;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    display: block;
}

/* Ensure no underline on hover for flags */
.lang-switch a::after {
    display: none;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 160px;
    /* Increased to 160px to prevent navbar overlap */
    /* Offset for fixed nav */
    position: relative;
}

/* Spacer for non-hero pages */
.content-spacer {
    padding-top: 160px !important;
}

/* Specific fix for Navbar Button Text */
.navbar .btn-primary {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}

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

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-blue);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-grey);
    margin-bottom: 2.5rem;
    font-weight: 300;
    max-width: 90%;
}

.hero-image {
    position: relative;
    height: 600px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.hero-image img {
    max-height: 100%;
    z-index: 2;
    position: relative;
}

.hero-glow {
    position: absolute;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(10, 26, 63, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    border-radius: 50%;
}

/* Cards & Sections */
.card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    border-top: 3px solid transparent;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-top-color: var(--accent-gold);
}

.section-title-wrapper {
    margin-top: 2rem;
    /* Add top margin */
    margin-bottom: 4rem;
    position: relative;
    display: inline-block;
}

.section-title-wrapper h2 {
    font-size: 2.5rem;
    position: relative;
    z-index: 2;
}

.section-title-wrapper::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 40%;
    height: 8px;
    background-color: rgba(212, 175, 55, 0.2);
    /* Gold transparent */
    z-index: 1;
}

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

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

/* --- Premium UI Upgrades --- */

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.section-header,
.card {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Stagger animations */
.card:nth-child(1) {
    animation-delay: 0.1s;
}

.card:nth-child(2) {
    animation-delay: 0.2s;
}

.card:nth-child(3) {
    animation-delay: 0.3s;
}

/* 2. Micro-interactions */
.card {
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Premium Button Styles */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    /* Pill shape for modern look */
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1e3a8a 100%);
    color: #ffffff !important;
    border: none;
    box-shadow: 0 4px 15px rgba(10, 26, 63, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(10, 26, 63, 0.4);
    background: linear-gradient(135deg, #1e3a8a 0%, var(--primary-blue) 100%);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    /* Glassy effect */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(10, 26, 63, 0.2);
    color: var(--primary-blue);
    margin-left: 1rem;
}

.btn-secondary:hover {
    background-color: var(--primary-blue);
    color: #ffffff;
    border-color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(10, 26, 63, 0.2);
}

/* 4. Newsletter Section */
.newsletter-section {
    background-color: var(--bg-light-grey);
    padding: 4rem 0;
    text-align: center;
}

.newsletter-form {
    max-width: 500px;
    margin: 2rem auto 0;
    display: flex;
    gap: 1rem;
}

.newsletter-input {
    flex: 1;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
}

/* 5. Testimonials */
.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    font-style: italic;
}

.testimonial-author {
    margin-top: 1rem;
    font-weight: bold;
    color: var(--primary-blue);
    font-style: normal;
}

/* Adjust Section Padding for more whitespace */
section {
    padding: 5rem 0;
    /* Increased from default */
}

/* Footer Polish */
footer {
    margin-top: 0;
    /* Remove margin since we have sections */
}

/* Footer */
footer {
    background-color: var(--primary-blue);
    color: #fff;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.footer-links h4 {
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
    color: #fff;
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        margin: 0 auto 2rem;
    }

    .hero-image {
        height: 400px;
    }

    .nav-links {
        display: none;
        /* Mobile menu to be implemented if needed */
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Gallery Section */
/* Gallery Section - Premium Layout */
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* First image spans full width */
    .gallery-item:first-child {
        grid-column: 1 / -1;
        /* Remove fixed height, use aspect ratio to show full image */
        height: auto;
        aspect-ratio: 16/9;
    }
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    /* Remove fixed height, use aspect ratio */
    height: auto;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Cover is usually best, but let's ensure top is seen */
    object-position: top center;
    transition: transform 0.5s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: #fff;
    padding: 2rem 1.5rem 1rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    font-weight: 500;
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
    transform: translateY(0);
}
/* Social Card Links */
.social-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.social-card-link:hover {
    background-color: white;
    color: var(--primary-blue);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.social-card-link i {
    font-size: 1.2rem;
}

/* --- MODERN UI UPGRADES (Step 1347) --- */

/* 1. Smooth Scrolling & Base */
html {
    scroll-behavior: smooth;
}

/* 2. Modern Shadows & Cards */
.card {
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); /* Softer, deeper shadow */
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); /* Apple-like ease */
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: var(--primary-blue);
}

/* 3. Hero Section Polish */
.hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #eef2f7 100%); /* Subtle gradient */
    position: relative;
    overflow: hidden;
}

/* Decorative Circle in Hero */
.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(10, 37, 88, 0.03) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    z-index: 0;
}

/* 4. Trusted By Section */
.trusted-by {
    padding: 2rem 0;
    background: white;
    border-bottom: 1px solid #eee;
}

.trusted-title {
    text-align: center;
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trusted-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    opacity: 0.6;
}

.trusted-logo-item {
    font-size: 1.5rem;
    color: #aaa;
    transition: all 0.3s ease;
}

.trusted-logo-item:hover {
    color: var(--primary-blue);
    opacity: 1;
    transform: scale(1.1);
}

/* 5. Button Upgrades */
.btn {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: rgba(255,255,255,0.1);
    transition: width 0.3s ease;
    z-index: -1;
}

.btn:hover::after {
    width: 100%;
}

/* AOS Animation Customization (if needed, but library handles most) */
[data-aos] {
    pointer-events: none;
}
[data-aos].aos-animate {
    pointer-events: auto;
}

/* --- 2025 WEB TRENDS UPGRADE --- */

/* 1. Typography Upgrade: Big & Readable */
body {
    font-size: 18px; /* Increased base size from 16px */
    line-height: 1.7; /* More breathing room */
    color: #333; /* Softer black */
}

h1 {
    font-size: 3.5rem; /* Bigger Hero Title */
    font-weight: 800;
    letter-spacing: -1px; /* Tight tracking for headlines */
    line-height: 1.2;
    margin-bottom: 1.5rem;
    
    /* Trend: Gradient Text */
    background: linear-gradient(135deg, #0a2558 0%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block; /* Required for gradient text sometimes */
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 1rem;
    color: #0a2558;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

p {
    margin-bottom: 1.5rem;
    color: #555; /* Softer grey for reading */
}

/* Mobile Typography Adjustments */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    body { font-size: 16px; }
}

/* 2. Modern UI Elements: Rounded & Soft */
.card {
    border-radius: 24px; /* More rounded */
    padding: 2.5rem; /* More internal space */
    background: rgba(255, 255, 255, 0.9); /* Slight transparency */
    backdrop-filter: blur(10px); /* Glassmorphism trend */
    border: 1px solid rgba(255,255,255,0.5);
}

.btn {
    border-radius: 50px; /* Pill shape is very trendy */
    padding: 1rem 2.5rem; /* Larger click area */
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

/* 3. Section Spacing: More White Space */
.section-padding {
    padding: 6rem 0; /* Increased from 4rem or 5rem */
}

/* 4. Trusted By Section Refinement */
.trusted-by {
    padding: 3rem 0;
    background: #fafafa; /* Distinct background */
}

.trusted-logo-item {
    font-size: 1.1rem; /* Slightly larger */
    font-weight: 500;
    color: #8898aa;
}

/* 5. Testimonials Specifics */
.services-grid .card p:first-child {
    font-size: 1.2rem; /* Larger quote text */
    line-height: 1.6;
    color: #0a2558;
    font-weight: 500;
}

/* Fix for H1 Gradient Text in Hero */
.hero-content h1 {
    /* Ensure gradient applies correctly */
    background: linear-gradient(135deg, #0a2558 0%, #1e40af 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
/* --- SERVICES PAGE UPGRADE --- */

/* 1. Premium Service Cards */
.service-card-premium {
    background: white;
    border-radius: 20px;
    padding: 3rem 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Bouncy effect */
    border-top: 5px solid var(--primary-blue);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-top-color: var(--accent-gold);
}

.service-number-bg {
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 8rem;
    font-weight: 900;
    color: rgba(0,0,0,0.03);
    z-index: 0;
    line-height: 1;
}

.service-content-wrapper {
    position: relative;
    z-index: 1;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-icon-large {
    width: 70px;
    height: 70px;
    background: rgba(10, 37, 88, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-card-premium:hover .service-icon-large {
    background: var(--primary-blue);
    color: white;
}

.service-features-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 2rem;
    text-align: left;
}

.service-features-list li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: start;
    gap: 12px;
    color: #555;
    font-size: 0.95rem;
}

.service-features-list li i {
    color: var(--accent-gold);
    margin-top: 4px;
}

/* 2. Process Section */
.process-section {
    background-color: #f8f9fa;
    position: relative;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
}

.process-step {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.process-icon-box {
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 5px 15px rgba(10, 37, 88, 0.3);
}

/* 3. FAQ Section */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #eee;
}

.faq-item h4 {
    color: var(--primary-blue);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.faq-item p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 0;
}
/* --- PRODUCTS PAGE UPGRADE --- */

/* 1. Premium Product Cards */
.product-card-premium {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

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

.product-image-wrapper {
    height: 280px;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-card-premium:hover .product-image-wrapper img {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-gold);
    color: #0a2558;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 2;
}

.product-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-category {
    font-size: 0.85rem;
    color: var(--primary-blue);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.product-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    line-height: 1.3;
    color: #333;
}

.product-desc {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex-grow: 1; /* Pushes footer down */
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.product-price {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-blue);
}

.product-btn {
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

/* Featured Product Section (Optional Highlight) */
.featured-product {
    background: linear-gradient(135deg, #0a2558 0%, #1e40af 100%);
    border-radius: 30px;
    padding: 4rem;
    color: white;
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
}

.featured-product::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
}
