/* === CSS VARIABLES (Theme Colors) === */
:root {
    --brand-dark: #0a2540;      
    --brand-darker: #06182c;    
    --brand-gold: #e07a1f;      
    --brand-goldhover: #cc6911; 
    --brand-light: #f8fafc;
    --text-main: #334155;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    --white: #ffffff;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === RESET & BASE STYLES === */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--text-main); background-color: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button, input, textarea, select { font-family: inherit; }

::-webkit-scrollbar { display: none; }
body { -ms-overflow-style: none; scrollbar-width: none; }

/* === LAYOUT UTILITIES === */
.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.text-center { text-align: center; }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 { color: var(--brand-darker); line-height: 1.2; letter-spacing: -0.02em; }
.section-subtitle { color: var(--brand-gold); font-size: 0.9rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1rem; }
.section-title { font-size: clamp(2.25rem, 4vw, 3rem); font-weight: 900; margin-bottom: 3.5rem; letter-spacing: -0.03em; }
.section-title.dark { color: var(--brand-darker); }


/* === HEADER & NAVIGATION (MOBILE FIRST) === */
.header { position: fixed; top: 0; left: 0; width: 100%; z-index: 999; padding: 1.5rem 0; background: transparent; color: var(--white); transition: all 0.5s ease; }
.header.scrolled { background-color: rgba(255, 255, 255, 0.98); backdrop-filter: blur(10px); color: var(--brand-darker); padding: 0.75rem 0; box-shadow: 0 10px 30px rgba(0,0,0,0.05); border-bottom: 1px solid rgba(0,0,0,0.05); }
.header-content { display: flex; justify-content: space-between; align-items: center; }

/* Logo Handling */
.logo { width: auto; max-width: 250px; object-fit: contain; transition: all 0.5s ease; position: relative; z-index: 1001; }
.logo.large { height: 4rem; }
.logo.small { height: 2.5rem; }
@media (min-width: 640px) { .logo.large { height: 5rem; } .logo.small { height: 3rem; } }
@media (min-width: 1024px) { .logo.large { height: 6rem; } .logo.small { height: 3.5rem; } }
.logo-hero-filter { filter: invert(1) hue-rotate(180deg) brightness(1.2); transition: filter 0.3s ease; }
.header.scrolled .logo-hero-filter { filter: none; }

/* Hamburger Button */
.mobile-btn { display: block; background: none; border: none; color: inherit; font-size: 1.75rem; cursor: pointer; position: relative; z-index: 1001; transition: color 0.3s; }
.header.scrolled .mobile-btn { color: var(--brand-darker); }
.mobile-btn.active { color: var(--brand-darker); }

/* Mobile Menu (Slide from right) */
.desktop-nav {
    position: fixed; top: 0; right: -100%; width: 100%; height: 100vh;
    background-color: var(--white); box-shadow: -10px 0 30px rgba(0,0,0,0.15);
    display: flex; flex-direction: column; padding: 8rem 2rem 2rem; gap: 1rem;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1); z-index: 1000; align-items: flex-start;
    overflow-y: auto;
}
.desktop-nav.active { right: 0; }
.desktop-nav > a, .nav-item-dropdown > a { 
    color: var(--brand-darker); font-size: 1.5rem; font-weight: 800; 
    border-bottom: 1px solid #f1f5f9; width: 100%; padding: 1rem 0; display: flex; justify-content: space-between; align-items: center;
}
.nav-item-dropdown { width: 100%; position: relative; cursor: pointer; }
.dropdown-menu { 
    display: none; flex-direction: column; padding: 1rem 0 0 1rem; 
    border-left: 2px solid var(--brand-gold); margin-top: 0.5rem; width: 100%;
}
.nav-item-dropdown.active .dropdown-menu { display: flex; }
.dropdown-menu a { padding: 0.75rem 1rem; font-size: 1.1rem; font-weight: 600; color: var(--text-muted); border-bottom: 1px solid #f8fafc; }
.dropdown-menu a:last-child { border-bottom: none; }
.dropdown-menu a:hover { color: var(--brand-gold); }

.header-contact { display: none; }

/* Desktop Navigation */
@media (min-width: 768px) { 
    .desktop-nav { 
        position: static; flex-direction: row; height: auto; width: auto; 
        background: transparent; box-shadow: none; padding: 0; gap: 2.5rem; 
        transition: none; z-index: auto; align-items: center; overflow-y: visible; right: 0;
    }
    .desktop-nav > a, .nav-item-dropdown > a { color: inherit; font-size: 0.95rem; font-weight: 700; border: none; width: auto; padding: 1rem 0; }
    .desktop-nav > a:hover, .nav-item-dropdown:hover > a { color: var(--brand-gold); }
    
    .nav-item-dropdown { padding: 1rem 0; width: auto; }
    .dropdown-menu {
        position: absolute; top: 100%; left: -1.5rem; min-width: 260px; background-color: var(--white); color: var(--text-main);
        border-radius: 0.75rem; box-shadow: 0 20px 40px rgba(10,37,64,0.1); opacity: 0; visibility: hidden; transform: translateY(15px);
        transition: var(--transition); z-index: 100; display: flex; padding: 0.75rem 0; border: 1px solid #f1f5f9; margin-top: -0.5rem; border-left: none;
    }
    .dropdown-menu::before { content: ''; position: absolute; top: -1rem; left: 0; width: 100%; height: 1rem; }
    .nav-item-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
    .dropdown-menu a { padding: 0.875rem 1.5rem; font-size: 0.95rem; color: var(--text-main); transition: var(--transition); border-bottom: 1px solid #f8fafc; }
    .dropdown-menu a:hover { background-color: var(--brand-light); color: var(--brand-gold); padding-left: 2rem; }
    
    .header-contact { display: flex; gap: 1.5rem; align-items: center; }
    .header-phone { font-weight: 800; font-size: 1rem; display: flex; gap: 0.5rem; align-items: center;}
    .header-phone i { color: var(--brand-gold); }
    .header-phone a:hover { color: var(--brand-gold); }
    
    .mobile-btn { display: none; } 
}

/* === BUTTONS === */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 1rem 2.25rem; font-weight: 800; border-radius: 50px; font-size: 0.95rem; transition: var(--transition); cursor: pointer; border: none; white-space: nowrap; text-transform: uppercase; letter-spacing: 0.05em; }
.btn-gold { background-color: var(--brand-gold); color: var(--brand-darker); }
.btn-gold:hover { background-color: var(--brand-goldhover); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(224, 122, 31, 0.3); }
.btn-outline-gold { border: 2px solid var(--brand-gold); color: var(--brand-gold); background: transparent; }
.btn-outline-gold:hover { background-color: var(--brand-gold); color: var(--brand-darker); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(224, 122, 31, 0.3); }
.btn-outline-gray { border: 2px solid rgba(255,255,255,0.3); color: var(--white); background: transparent; }
.btn-outline-gray:hover { border-color: var(--white); background: var(--white); color: var(--brand-darker); transform: translateY(-3px); }

/* === HERO SECTION === */
.hero { position: relative; min-height: 700px; display: flex; align-items: center; background-color: var(--brand-dark); color: var(--white); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-overlay { position: absolute; inset: 0; background: rgba(10, 37, 64, 0.82); }
.hero-content { position: relative; z-index: 10; width: 100%; padding-top: 10rem; padding-bottom: 8rem; display: flex; justify-content: center; }
.hero-text-box { max-width: 54rem; text-align: center; display: flex; flex-direction: column; align-items: center; margin: 0 auto; }
.hero-subtitle { color: var(--brand-gold); font-size: 1rem; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 1.5rem; }
.hero-title { color: var(--white); font-size: clamp(3.5rem, 6vw, 5rem); font-weight: 900; line-height: 1.1; margin-bottom: 1.5rem; letter-spacing: -0.03em; }
.hero-desc { color: #cbd5e1; font-size: 1.25rem; margin-bottom: 3rem; max-width: 42rem; line-height: 1.7; }
.hero-buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.25rem; margin-bottom: 3.5rem; }
.trust-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem; font-size: 1rem; font-weight: 600; color: var(--white); }
.trust-badges span { display: flex; align-items: center; gap: 0.5rem; }
.trust-badges i { color: var(--brand-gold); font-size: 1.25rem; }

/* === TRUST BAR === */
.trust-bar { position: relative; z-index: 20; background: transparent; padding: 0; border: none; margin-top: -4.5rem; }
.trust-grid { background: var(--white); padding: 2.5rem 2rem; border-radius: 1rem; box-shadow: 0 20px 40px -10px rgba(10,37,64,0.15); border: 1px solid #f1f5f9; display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .trust-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; padding: 3rem 2.5rem; } }
.trust-item { display: flex; align-items: center; text-align: left; gap: 1.25rem; }
.trust-icon { width: 3.5rem; height: 3.5rem; min-width: 3.5rem; border-radius: 0.75rem; background: rgba(224,122,31,0.1); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--brand-gold); }
.trust-item h4 { font-weight: 900; font-size: 0.95rem; margin-bottom: 0.25rem; color: var(--brand-darker); text-transform: uppercase; letter-spacing: 0.05em; }
.trust-item p { color: var(--text-muted); font-size: 0.875rem; margin: 0; line-height: 1.4; }

/* === MAIN SERVICES === */
.services { background-color: var(--brand-light); padding: 8rem 0; margin-top: 0; }
.services-grid { display: grid; gap: 3rem; grid-template-columns: 1fr; max-width: 1200px; margin: 0 auto; }
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(4, 1fr); gap: 2rem; } }

.service-card { background-color: var(--white); border-radius: 1.25rem; overflow: visible; position: relative; box-shadow: 0 10px 30px rgba(10,37,64,0.06); transition: var(--transition); border: 1px solid #f1f5f9; display: flex; flex-direction: column; }
.service-card:hover { transform: translateY(-10px); box-shadow: 0 25px 50px rgba(10,37,64,0.12); border-color: rgba(224,122,31,0.3); }
.service-card img { width: 100%; height: 220px; object-fit: cover; border-top-left-radius: 1.25rem; border-top-right-radius: 1.25rem; }
.service-content { padding: 3rem 1.5rem 2.5rem; position: relative; flex-grow: 1; display: flex; flex-direction: column; text-align: center; background: var(--white); border-bottom-left-radius: 1.25rem; border-bottom-right-radius: 1.25rem; }
.service-icon { position: absolute; top: -2.5rem; left: 50%; transform: translateX(-50%); width: 5rem; height: 5rem; background-color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--brand-gold); font-size: 2rem; box-shadow: 0 15px 25px rgba(0,0,0,0.08); border: 4px solid var(--white); }
.service-content h4 { font-weight: 900; font-size: 1.35rem; margin: 1rem 0 1rem; color: var(--brand-darker); }
.service-content p { color: var(--text-muted); font-size: 1rem; line-height: 1.7; flex-grow: 1; margin: 0; }
.btn-link { color: var(--brand-gold); font-weight: 700; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.05em; display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 1.5rem; transition: var(--transition); justify-content: center;}
.service-card:hover .btn-link { gap: 0.75rem; color: var(--brand-goldhover); }

/* === ABOUT SECTION === */
.about { background-color: var(--white); padding: 8rem 0; }
.about-flex { display: flex; flex-direction: column; gap: 4rem; align-items: center; }
@media (min-width: 992px) { .about-flex { flex-direction: row; gap: 6rem; } }
.about-text, .about-image { width: 100%; }
@media (min-width: 992px) { .about-text, .about-image { width: 50%; } }
.about-text p { color: var(--text-muted); font-size: 1.125rem; margin-bottom: 1.5rem; line-height: 1.8; }
.about-text p:last-of-type { margin-bottom: 2.5rem; }
.about-img-container { position: relative; border-radius: 1.25rem; overflow: hidden; box-shadow: 0 30px 60px -15px rgba(10,37,64,0.25); border: 1px solid #f1f5f9; }

/* === WHY CHOOSE US / FEATURES === */
.service-highlight-banner { position: relative; overflow: hidden; background-color: var(--brand-dark); color: var(--white); padding: 8rem 0; margin: 0; text-align: center; }
.service-highlight-banner .section-title { color: var(--white); }
.service-highlight-grid { display: grid; gap: 2.5rem; grid-template-columns: 1fr; max-width: 75rem; margin: 4rem auto 0; }
@media (min-width: 768px) { .service-highlight-grid { grid-template-columns: repeat(3, 1fr); } }
.highlight-item { background: rgba(255,255,255,0.03); padding: 3.5rem 2.5rem; border-radius: 1.25rem; border: 1px solid rgba(255,255,255,0.05); text-align: left; transition: var(--transition); }
.highlight-item:hover { transform: translateY(-8px); background: rgba(255,255,255,0.06); border-color: rgba(224,122,31,0.4); box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
.highlight-item i { width: 4.5rem; height: 4.5rem; background: rgba(224,122,31,0.15); color: var(--brand-gold); border-radius: 1rem; display: flex; align-items: center; justify-content: center; font-size: 2rem; margin-bottom: 2rem; }
.highlight-item h5 { font-size: 1.35rem; font-weight: 800; margin-bottom: 1rem; color: var(--white); }
.highlight-item p { font-size: 1rem; color: #cbd5e1; line-height: 1.7; margin: 0; }

/* === REVIEWS SECTION === */
.reviews { background-color: var(--white); padding: 8rem 0; position: relative; }
.reviews-container { position: relative; max-width: 80rem; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 768px) { .reviews-container { padding: 0 4rem; } }
.carousel-btn { position: absolute; top: 50%; transform: translateY(-50%); width: 3.5rem; height: 3.5rem; background-color: var(--white); color: var(--brand-darker); border-radius: 50%; display: flex; align-items: center; justify-content: center; border: 1px solid #e2e8f0; box-shadow: 0 10px 20px rgba(0,0,0,0.05); cursor: pointer; transition: var(--transition); z-index: 10; font-size: 1.25rem; }
.carousel-btn:hover { background-color: var(--brand-gold); color: var(--white); border-color: var(--brand-gold); transform: translateY(-50%) scale(1.1); }
.carousel-left { left: 0; }
.carousel-right { right: 0; }
@media (max-width: 767px) { .carousel-btn { display: none; } }
.reviews-grid { display: grid; gap: 2.5rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }
.review-card { background-color: #f8fafc; padding: 3.5rem 2.5rem; border-radius: 1.25rem; box-shadow: 0 10px 30px rgba(0,0,0,0.03); border: 1px solid #f1f5f9; display: flex; flex-direction: column; height: 100%; transition: var(--transition); }
.review-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(10,37,64,0.08); border-color: rgba(224,122,31,0.2); }
.stars { color: var(--brand-gold); font-size: 1.15rem; margin-bottom: 1.5rem; display: flex; gap: 0.25rem; }
.review-text { color: var(--text-main); font-size: 1.1rem; margin-bottom: 2.5rem; flex-grow: 1; font-style: italic; line-height: 1.8; }
.review-author { display: flex; justify-content: space-between; align-items: center; margin-top: auto; padding-top: 1.5rem; border-top: 1px solid #e2e8f0; }
.review-author span { font-weight: 800; font-size: 1.1rem; color: var(--brand-darker); }
.google-icon { display: none !important; }

/* === CTA BANNER === */
.cta-banner { position: relative; background-color: var(--brand-gold); padding: 6rem 0; color: var(--brand-darker); overflow: hidden; text-align: center; }
.cta-bg { position: absolute; inset: 0; opacity: 0.05; background-image: url('https://images.unsplash.com/photo-1504307651254-35680f356f12?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80'); background-size: cover; background-position: center; mix-blend-mode: multiply; }
.cta-content { position: relative; z-index: 10; display: flex; flex-direction: column; gap: 2.5rem; align-items: center; justify-content: center; }
@media (min-width: 992px) { .cta-content { flex-direction: row; justify-content: space-between; text-align: left; } }
.cta-text h3 { color: var(--brand-darker); font-size: 1rem; font-weight: 900; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 0.75rem; }
.cta-text h2 { font-size: clamp(2.25rem, 4vw, 3rem); font-weight: 900; margin-bottom: 1rem; color: var(--brand-darker); letter-spacing: -0.03em; }
.cta-text p { color: rgba(0,0,0,0.75); font-size: 1.15rem; max-width: 42rem; font-weight: 600; margin: 0; }
.cta-buttons { display: flex; flex-direction: column; gap: 1rem; width: 100%; }
@media (min-width: 640px) { .cta-buttons { flex-direction: row; width: auto; } }
.cta-buttons .btn-gold { background-color: var(--brand-darker); color: var(--brand-gold); }
.cta-buttons .btn-gold:hover { background-color: #000; box-shadow: 0 10px 25px rgba(0,0,0,0.3); }
.cta-buttons .btn-outline-gray { border: 2px solid var(--brand-darker); color: var(--brand-darker); font-weight: 800; }
.cta-buttons .btn-outline-gray:hover { background-color: var(--brand-darker); color: var(--brand-gold); border-color: var(--brand-darker); }

/* === FOOTER === */
.footer { background-color: #040f1c; color: var(--white); padding: 6rem 0 2rem 0; position: relative; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-grid { display: grid; gap: 4rem; grid-template-columns: 1fr; margin-bottom: 5rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }
.footer-desc { color: #cbd5e1; font-size: 1rem; margin: 1.5rem 0 2rem; line-height: 1.8; }
.social-links { display: flex; gap: 1rem; }
.social-icon { width: 2.75rem; height: 2.75rem; border-radius: 0.5rem; border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.02); display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1.15rem; transition: var(--transition); }
.social-icon:hover { background: var(--brand-gold); border-color: var(--brand-gold); color: var(--brand-darker); transform: translateY(-4px); }
.footer h4 { font-weight: 800; margin-bottom: 1.75rem; font-size: 1.25rem; color: var(--white); }
.footer-contact li { display: flex; align-items: flex-start; gap: 1rem; color: #cbd5e1; font-size: 1rem; margin-bottom: 1.25rem; line-height: 1.6; }
.footer-contact i { color: var(--brand-gold); margin-top: 0.25rem; font-size: 1.15rem; }
.footer-contact a { transition: var(--transition); }
.footer-contact a:hover { color: var(--brand-gold); }

.badges-col { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
@media (min-width: 1024px) { .badges-col { align-items: flex-end; } }
.gas-safe-badge { background-color: #fbbf24; color: #000; padding: 1.25rem; width: 9rem; height: 9rem; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; border-radius: 0.25rem; clip-path: polygon(0 0, 100% 0, 100% 100%, 0 75%); position: relative; }
.gas-safe-badge h4 { font-weight: 900; font-size: 1.75rem; line-height: 1; margin: 0; color: #000;}
.gas-safe-badge .safe { font-weight: 800; font-size: 1rem; line-height: 1.1; display: block; color: #000;}
.gas-safe-badge .reg { font-size: 0.6rem; font-weight: 800; margin-top: 0.25rem; letter-spacing: 0.1em; color: #000;}
.badge-text { text-align: center; margin-top: 1.5rem; width: 9rem; }
.badge-text p:first-child { font-size: 0.65rem; color: #cbd5e1; text-transform: uppercase; letter-spacing: 0.15em; font-weight: 600;}
.badge-text p:last-child { font-size: 0.9rem; font-weight: 800; color: var(--white); margin-top: 0.25rem; }

.copyright { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 2.5rem; display: flex; flex-direction: column; justify-content: space-between; align-items: center; font-size: 0.9rem; color: #cbd5e1; }
@media (min-width: 768px) { .copyright { flex-direction: row; } }
.footer-links { display: flex; gap: 1.5rem; margin-top: 1rem; }
@media (min-width: 768px) { .footer-links { margin-top: 0; } }
.footer-links a:hover { color: var(--brand-gold); }

.whatsapp-float { position: fixed; bottom: 2rem; right: 2rem; background-color: #22c55e; color: var(--white); width: 4rem; height: 4rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; box-shadow: 0 10px 25px rgba(34, 197, 94, 0.4); z-index: 50; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
.whatsapp-float:hover { background-color: #16a34a; transform: translateY(-5px); color: var(--white); box-shadow: 0 15px 35px rgba(34, 197, 94, 0.5); }

/* === SHARED SUBPAGE LAYOUTS (FIXED BUG) === */
.page-hero { min-height: 45vh; display: flex; align-items: center; justify-content: center; background-color: var(--brand-dark); position: relative; color: var(--white); text-align: center; overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; z-index: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.3; }
.page-hero-content { position: relative; z-index: 10; padding: 10rem 1.5rem 4rem; }

.service-detail { padding: 8rem 0; }
.service-grid-2 { display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: center; }
@media (min-width: 768px) { .service-grid-2 { grid-template-columns: 1fr 1fr; gap: 6rem; } }
.service-list { list-style: none; padding: 0; margin-top: 2rem; }
.service-list li { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.25rem; color: var(--text-muted); font-size: 1.05rem; line-height: 1.6;}
.service-list i { color: var(--brand-gold); margin-top: 0.35rem; font-size: 1.15rem; }
.service-img-wrap { border-radius: 1.25rem; overflow: hidden; box-shadow: 0 30px 60px -15px rgba(10,37,64,0.25); }

.sub-service-grid { display: grid; gap: 2.5rem; grid-template-columns: 1fr; margin: 6rem 0 2rem; }
@media (min-width: 768px) { .sub-service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .sub-service-grid { grid-template-columns: repeat(3, 1fr); } }
.sub-service-card { background: var(--white); padding: 3rem 2.5rem; border-radius: 1.25rem; border: 1px solid #f1f5f9; transition: var(--transition); text-align: left; height: 100%; display: flex; flex-direction: column; box-shadow: 0 10px 30px rgba(0,0,0,0.03);}
.sub-service-card:hover { transform: translateY(-8px); box-shadow: 0 25px 50px rgba(10,37,64,0.1); border-color: rgba(224,122,31,0.3); }
.sub-service-icon { width: 4.5rem; height: 4.5rem; background: rgba(224,122,31,0.1); color: var(--brand-gold); border-radius: 1rem; display: flex; align-items: center; justify-content: center; font-size: 2rem; margin-bottom: 2rem; }
.sub-service-card h4 { font-size: 1.35rem; font-weight: 800; margin-bottom: 1rem; color: var(--brand-darker); }
.sub-service-card p { font-size: 1rem; color: var(--text-muted); line-height: 1.7; margin: 0; flex-grow: 1; }

.seo-content-block { max-width: 48rem; margin: 8rem auto; text-align: center; }
.seo-content-block h3 { font-size: 2rem; color: var(--brand-darker); margin-bottom: 1.5rem; font-weight: 900; letter-spacing: -0.02em;}
.seo-content-block p { color: var(--text-muted); font-size: 1.1rem; line-height: 1.8; margin-bottom: 1.5rem;}

/* === CONTACT PAGE === */
.contact-grid { display: grid; gap: 4rem; grid-template-columns: 1fr; padding: 6rem 0; align-items: start; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1.5fr; gap: 6rem; } }
.contact-info-card { background: var(--brand-darker); color: var(--white); padding: 3.5rem; border-radius: 1.25rem; box-shadow: 0 30px 60px -15px rgba(10,37,64,0.3); position: sticky; top: 8rem; }
.contact-info-card h3 { color: var(--brand-gold); font-size: 1.75rem; margin-bottom: 2rem; font-weight: 800; letter-spacing: -0.02em; }
.contact-info-item { display: flex; gap: 1.25rem; margin-bottom: 2.5rem; align-items: flex-start; }
.contact-info-item i { font-size: 1.75rem; color: var(--brand-gold); margin-top: 0.25rem; }
.contact-info-item h4 { font-size: 1.15rem; font-weight: 800; margin-bottom: 0.5rem; color: var(--white); }
.contact-info-item p { color: #cbd5e1; font-size: 1rem; line-height: 1.6; margin: 0; }
.contact-info-item a { color: #cbd5e1; transition: var(--transition); }
.contact-info-item a:hover { color: var(--brand-gold); }

.fancy-form-wrapper { background: var(--white); padding: 4rem; border-radius: 1.25rem; box-shadow: 0 15px 50px rgba(0,0,0,0.06); border: 1px solid #f1f5f9; }
.fancy-form-wrapper h2 { font-size: 2.5rem; color: var(--brand-darker); margin-bottom: 1rem; font-weight: 900; letter-spacing: -0.03em; }
.fancy-form-wrapper > p { color: var(--text-muted); margin-bottom: 3rem; font-size: 1.1rem; line-height: 1.7; }
.fancy-form-wrapper .form-group { margin-bottom: 1.75rem; }
.fancy-form-wrapper label { display: block; font-weight: 700; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.75rem; color: var(--brand-darker); }
.fancy-form-wrapper .form-input { width: 100%; background-color: #f8fafc; border: 1px solid #cbd5e1; border-radius: 0.5rem; padding: 1.25rem 1.5rem; color: var(--text-main); font-size: 1.05rem; transition: var(--transition); font-family: inherit;}
.fancy-form-wrapper .form-input:focus { border-color: var(--brand-gold); background-color: var(--white); box-shadow: 0 0 0 4px rgba(224, 122, 31, 0.1); outline: none;}
.fancy-form-wrapper select.form-input { cursor: pointer; appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234b5563' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e"); background-repeat: no-repeat; background-position: right 1.5rem center; background-size: 1em; }
.radio-group { display: flex; flex-wrap: wrap; gap: 1.5rem; margin-top: 0.5rem; }
.radio-label { display: flex; align-items: center; gap: 0.5rem; font-size: 1rem; font-weight: 500; color: var(--text-main); cursor: pointer; }
.radio-label input[type="radio"] { accent-color: var(--brand-gold); width: 1.25rem; height: 1.25rem; cursor: pointer; }
.fancy-form-wrapper .form-btn { font-size: 1.1rem; padding: 1.5rem; margin-top: 1.5rem; border-radius: 50px; width: 100%; }