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

/* ========================================
   APEX ACCURACY ESTIMATING - MAIN STYLES
   Modern, High-End Web Application
   ======================================== */

/* CSS Variables for Colors */
:root {
    --primary-blue: #0056b3;
    --primary-black: #1a1a1a;
    --primary-white: #ffffff;
    --accent-light: #4a9eff;
    --accent-dark: #003d7a;
    --gray-light: #f5f5f5;
    --gray-medium: #e0e0e0;
    --gray-dark: #333333;
    --text-primary: #2c3e50;
    --text-secondary: #7f8c8d;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.2);
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Legacy mappings for compatibility */
    --primary-color: var(--primary-blue);
    --secondary-color: var(--accent-light);
    --accent-color: var(--accent-light);
    --dark-color: var(--primary-black);
    --light-color: var(--gray-light);
    --text-color: var(--text-primary);
    --text-light: var(--text-secondary);
    --white: var(--primary-white);
    --gradient-primary: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-light) 100%);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark-color);
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img { height: 50px; }
.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: #343535;
    color: #198cb9;
}
.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-color);
    position: relative;
    padding: 8px 0;
}

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

.nav-link:hover, .nav-link.active { color: var(--primary-color); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-cta {
    background: var(--gradient-primary);
    color: var(--white) !important;
    padding: 12px 28px !important;
    border-radius: 8px;
    font-weight: 600;
}

.nav-cta::after { display: none !important; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

/* Dropdown Navigation */
.nav-dropdown { position: relative; }

.nav-dropdown > a { display: flex; align-items: center; gap: 6px; }
.nav-dropdown > a > i { font-size: 0.7rem; transition: transform 0.3s; }
.nav-dropdown:hover > a > i { transform: rotate(180deg); }

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    padding: 24px;
    min-width: 700px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    margin-top: 20px;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 20px;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.dropdown-column h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dropdown-column h4 i { font-size: 1rem; }

.dropdown-column a {
    display: block;
    padding: 10px 0;
    color: var(--text-color);
    font-size: 0.9rem;
    font-weight: 400;
    transition: all 0.2s;
    border-bottom: 1px solid transparent;
}

.dropdown-column a:hover {
    color: var(--primary-color);
    padding-left: 8px;
    border-bottom-color: var(--accent-color);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    border-radius: 3px;
}

/* Hero Section */
.hero {
    margin-top: 82px;
    min-height: calc(100vh - 82px);
    position: relative;
    display: flex;
    align-items: center;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.60) 50%,
        rgba(0, 0, 0, 0.45) 50%,
    );
}

.hero-container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 24px;
}

.hero-content { color: var(--white); max-width: 800px; }

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--white);
}

.hero-title span {
    background: linear-gradient(135deg, #60a5fa 0%, #93c5fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--white);
    color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item { text-align: center; }
.stat-number { font-size: 2.5rem; font-weight: 700; color: var(--white); display: block; }
.stat-label { font-size: 0.9rem; color: rgba(255, 255, 255, 0.7); margin-top: 4px; }

/* Services Section */
.services { padding: 120px 0; background: var(--light-color); }

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.section-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-title { font-size: 3rem; margin-bottom: 20px; }
.section-subtitle { font-size: 1.2rem; color: var(--text-light); line-height: 1.8; }

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

.service-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

.service-image { height: 240px; overflow: hidden; }
.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.service-card:hover .service-image img { transform: scale(1.1); }

.service-content { padding: 32px; }

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--white);
    font-size: 1.5rem;
}

.service-title { font-size: 1.5rem; margin-bottom: 16px; }
.service-description { color: var(--text-light); margin-bottom: 24px; line-height: 1.7; }

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
}

.service-link:hover { gap: 12px; }

/* Samples Section */
.samples-section { padding: 100px 0; background: var(--white); }

.samples-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: var(--gradient-primary);
    border-radius: 30px;
    overflow: hidden;
    padding: 60px;
}

.samples-content { color: var(--white); }
.samples-title { font-size: 2.5rem; margin: 20px 0; color: var(--white); }
.samples-text { font-size: 1.1rem; line-height: 1.8; margin-bottom: 30px; color: rgba(255, 255, 255, 0.9); }

.samples-features {
    list-style: none;
    margin-bottom: 40px;
}

.samples-features li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
}

.samples-features i { color: #10b981; font-size: 1.3rem; }

.samples-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
}

/* About Section */
.about { 
    padding: 120px 0; 
    background: var(--dark-color);
    position: relative;
    overflow: hidden;
}

.about-video-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
}

.about-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-video-container iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.70);
    z-index: 0;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-img-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-wrapper:first-child { grid-row: span 2; }
.about-img-wrapper img { width: 100%; height: 100%; object-fit: cover; }

.about-content h2 { 
    font-size: 2.8rem; 
    margin-bottom: 24px; 
    color: var(--white);
}
.about-text { 
    font-size: 1.1rem; 
    color: rgba(255, 255, 255, 0.85); 
    margin-bottom: 24px; 
    line-height: 1.8; 
}

.about-content .section-badge { 
    background: rgba(255, 255, 255, 0.15); 
    color: var(--white); 
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.about-feature-icon {
    width: 40px;
    height: 40px;
    background: rgba(59, 130, 246, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.about-feature-text { font-weight: 500; color: rgba(255, 255, 255, 0.9); }

/* Partners */
.partners {
    padding: 80px 0;
    background: var(--dark-color);
    color: var(--white);
}

.partners .section-title { color: var(--white); text-align: center; margin-bottom: 60px; }

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
    align-items: center;
    opacity: 0.7;
}

.partner-logo {
    filter: grayscale(100%) brightness(200%);
    transition: var(--transition);
    max-height: 60px;
    object-fit: contain;
}

.partner-logo:hover { filter: grayscale(0%) brightness(100%); }

/* Contact CTA */
.contact-cta {
    padding: 100px 0;
    background: var(--gradient-primary);
    text-align: center;
}

.contact-cta-content { color: var(--white); max-width: 700px; margin: 0 auto; }
.contact-cta h2 { font-size: 2.8rem; margin-bottom: 20px; color: var(--white); }
.contact-cta p { font-size: 1.2rem; margin-bottom: 40px; color: rgba(255, 255, 255, 0.9); }
.contact-cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .logo { margin-bottom: 20px; }
.footer-brand .logo-text { color: var(--white); -webkit-text-fill-color: var(--white); }
.footer-text { color: rgba(255, 255, 255, 0.7); line-height: 1.8; margin-bottom: 24px; }

.social-links { display: flex; gap: 12px; }

.social-link {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-link:hover { background: var(--primary-color); transform: translateY(-3px); }

.footer-column h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 24px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: rgba(255, 255, 255, 0.7); }
.footer-links a:hover { color: var(--white); padding-left: 5px; }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright { color: rgba(255, 255, 255, 0.6); font-size: 0.9rem; }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: rgba(255, 255, 255, 0.6); font-size: 0.9rem; }
.footer-legal a:hover { color: var(--white); }

/* Scroll Top */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    z-index: 999;
}

.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { transform: translateY(-5px); }

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    50% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
}

.whatsapp-float:hover { transform: scale(1.1); }

/* Contact Page */
.contact-page { padding: 140px 0 100px; background: var(--light-color); min-height: 100vh; }

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    background: var(--white);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.contact-info {
    background: var(--gradient-primary);
    padding: 60px;
    color: var(--white);
}

.contact-info h3 { font-size: 2rem; margin-bottom: 16px; color: var(--white); }
.contact-intro { color: rgba(255, 255, 255, 0.9); margin-bottom: 40px; line-height: 1.7; }

.contact-details { display: flex; flex-direction: column; gap: 32px; margin-bottom: 40px; }

.contact-item { display: flex; align-items: flex-start; gap: 16px; }

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.contact-text p, .contact-text a { color: rgba(255, 255, 255, 0.9); font-size: 0.95rem; line-height: 1.6; }
.contact-text a:hover { color: var(--white); }

.map-container {
    border-radius: 15px;
    overflow: hidden;
    height: 250px;
}

.map-container iframe { width: 100%; height: 100%; border: none; }

.contact-form-wrapper { padding: 60px; }
.contact-form h3 { font-size: 2rem; margin-bottom: 32px; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group { margin-bottom: 24px; }

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-color);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

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

.checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 24px;
}

.checkbox-wrapper input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: var(--primary-color);
    cursor: pointer;
}

.checkbox-wrapper label {
    font-size: 0.9rem;
    color: var(--text-light);
    cursor: pointer;
    line-height: 1.5;
}

.checkbox-wrapper a { color: var(--primary-color); font-weight: 500; }

.btn-submit {
    width: 100%;
    padding: 18px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.btn-submit:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-submit:disabled { opacity: 0.7; cursor: not-allowed; }

.form-message { margin-top: 15px; text-align: center; }

/* Page Header */
.page-header {
    margin-top: 82px;
    padding: 100px 0 60px;
    background: var(--gradient-primary);
    text-align: center;
    color: var(--white);
}

.page-header h1 { font-size: 3rem; margin-bottom: 16px; color: var(--white); }
.page-header p { font-size: 1.2rem; color: rgba(255, 255, 255, 0.9); }

/* Service Detail Page Styles */
.service-detail { padding: 80px 0 120px; background: var(--light-color); }

.service-content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.service-detail-content {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.service-hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.service-detail-content h2,
.service-detail-content h3 {
    padding: 0 40px;
}

.service-detail-content h2 {
    font-size: 2.2rem;
    margin: 40px 0 20px;
}

.service-detail-content h3 {
    font-size: 1.6rem;
    margin: 40px 0 20px;
    color: var(--primary-color);
}

.service-detail-content p {
    padding: 0 40px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-content-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    margin: 30px 0;
}

.process-list,
.benefits-list {
    list-style: none;
    padding: 0 40px 40px;
    margin: 0;
}

.process-list li,
.benefits-list li {
    padding: 15px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #e2e8f0;
    color: var(--text-color);
}

.process-list li:last-child,
.benefits-list li:last-child {
    border-bottom: none;
}

.process-list i { color: var(--primary-color); font-size: 1.2rem; }
.benefits-list i { color: #f59e0b; font-size: 1.2rem; }

/* Service Sidebar */
.service-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sidebar-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-md);
}

.sidebar-card h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.sidebar-card p {
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.6;
}

.sidebar-card .btn {
    width: 100%;
    justify-content: center;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    padding: 15px;
    background: rgba(30, 64, 175, 0.05);
    border-radius: 12px;
    transition: var(--transition);
}

.phone-link:hover {
    background: rgba(30, 64, 175, 0.1);
    transform: translateX(5px);
}

/* Services List Page */
.services-list { padding: 100px 0; }

.service-card-large {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.service-card-large.reverse { direction: rtl; }
.service-card-large.reverse > * { direction: ltr; }

.service-card-large .service-image { height: 500px; }
.service-card-large .service-image img { width: 100%; height: 100%; object-fit: cover; }

.service-content-large { padding: 50px; }
.service-content-large .service-icon {
    width: 70px;
    height: 70px;
    font-size: 2rem;
    margin-bottom: 24px;
}

.service-content-large h3 { font-size: 2rem; margin-bottom: 20px; }
.service-content-large p { color: var(--text-light); line-height: 1.8; margin-bottom: 24px; }

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-color);
}

.service-features i { color: var(--secondary-color); }

/* Privacy & Terms Pages */
.legal-page {
    margin-top: 82px;
    padding: 80px 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.legal-page h1 { font-size: 2.5rem; margin-bottom: 40px; text-align: center; }
.legal-page h2 { font-size: 1.8rem; margin: 40px 0 20px; }
.legal-page p { line-height: 1.8; margin-bottom: 20px; color: var(--text-light); }
.legal-page ul { margin-left: 30px; margin-bottom: 20px; color: var(--text-light); }
.legal-page li { margin-bottom: 10px; line-height: 1.7; }

/* Gallery Section */
.gallery-section { padding: 100px 0; background: var(--white); }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: var(--white);
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

/* Team Section */
.team-section { padding: 100px 0; background: var(--light-color); }

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

.team-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
}

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

.team-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-content { padding: 30px; }
.team-content h3 { font-size: 1.4rem; margin-bottom: 8px; }
.team-role {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 16px;
}

/* Blog Section */
.blog-section { padding: 100px 0; background: var(--light-color); }

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

.blog-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.blog-image { height: 220px; overflow: hidden; }
.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.blog-card:hover .blog-image img { transform: scale(1.1); }

.blog-content { padding: 30px; }
.blog-meta {
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 16px;
}
.blog-content h3 { font-size: 1.3rem; margin-bottom: 12px; }
.blog-content p { color: var(--text-light); line-height: 1.6; }

/* VFX Page Special Styling */
.vfx-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    padding: 160px 0 100px;
    margin-top: 82px;
    text-align: center;
    color: var(--white);
}

.vfx-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--white);
}

.vfx-hero p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
}

.vfx-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    padding: 80px 0;
}

.vfx-feature-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.vfx-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.vfx-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--white);
    font-size: 2rem;
}

/* Navbar scrolled state */
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title { font-size: 2.8rem; }
    .about-container, .samples-container, .contact-container, .service-card-large { grid-template-columns: 1fr; }
    .about-images { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .service-card-large.reverse { direction: ltr; }
    .service-content-wrapper { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 82px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 40px 24px;
        gap: 20px;
        box-shadow: var(--shadow-lg);
        transform: translateY(-150%);
        transition: var(--transition);
    }
    
    .nav-menu.active { transform: translateY(0); }
    .mobile-menu-toggle { display: flex; }
    
    .hero-title { font-size: 2.2rem; }
    .hero-subtitle { font-size: 1.1rem; }
    .section-title { font-size: 2.2rem; }
    .services-grid { grid-template-columns: 1fr; }
    .about-features, .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .contact-info, .contact-form-wrapper { padding: 40px 30px; }
    .hero-stats { flex-direction: column; gap: 20px; }
    .samples-container { padding: 40px 30px; }
    .service-card-large .service-image { height: 300px; }
    .service-detail-content h2,
    .service-detail-content h3,
    .service-detail-content p,
    .process-list,
    .benefits-list { padding-left: 24px; padding-right: 24px; }
    .service-hero-image { height: 250px; }
    .gallery-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .vfx-features { grid-template-columns: 1fr; }
    .vfx-hero h1 { font-size: 2.5rem; }

    /* Mobile Dropdown Styles */
    .nav-dropdown { width: 100%; }
    .nav-dropdown > a { justify-content: space-between; }
    .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        min-width: 100%;
        box-shadow: none;
        padding: 0;
        margin-top: 10px;
        display: none;
        background: var(--light-color);
        border-radius: 12px;
    }
    .dropdown-menu.active { display: block; }
    .dropdown-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }
    .dropdown-column h4 {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }
    .dropdown-column a {
        padding: 8px 0;
        font-size: 0.9rem;
    }
}
