:root {
    --primary: #0a192f;
    --primary-light: #112240;
    --primary-dark: #020c1b;
    --secondary: #64ffda; /* We'll use a sophisticated gold instead of teal for CA */
    --accent: #E2B85F; /* Sophisticated Gold */
    --accent-hover: #CCA34D;
    --accent-light: rgba(226, 184, 95, 0.1);
    --text: #334155;
    --text-lead: #1e293b;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --bg-alt: #f1f5f9;
    --white: #ffffff;
    --dark: #0f172a;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow: 0 4px 20px rgba(0,0,0,0.05);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-elegant: 0 10px 30px rgba(10, 25, 47, 0.08);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --border-radius: 8px;
    --border-radius-lg: 16px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', system-ui, -apple-system, sans-serif;
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

p {
    margin-bottom: 15px;
}

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

a:hover {
    color: var(--accent);
}

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

.section {
    padding: 100px 0;
    position: relative;
}

.section-padding { padding: 80px 0; }

/* UI Helpers */
.bg-light { background-color: var(--bg-light); }
.bg-alt { background-color: var(--bg-alt); }
.bg-dark { background-color: var(--primary); color: var(--white); }
.text-white { color: var(--white); }
.text-accent { color: var(--accent); }
.text-center { text-align: center; }
.shadow-box { box-shadow: var(--shadow-lg); border-radius: var(--border-radius); background: var(--white); padding: 30px; }
.hidden { display: none; }

.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header.left {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
}

.section-header h2 {
    font-size: 2.75rem;
    position: relative;
    padding-bottom: 20px;
    color: var(--primary);
}

.bg-dark .section-header h2 {
    color: var(--white);
}

.subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-top: 15px;
}

.bg-dark .subtitle { color: rgba(255,255,255,0.8); }

.underline {
    width: 60px;
    height: 4px;
    background: var(--accent);
    margin: 0 auto;
    border-radius: 2px;
}

.section-header.left .underline {
    margin: 0;
}

/* Floating Actions */
.whatsapp-float, .card-float {
    position: fixed;
    border-radius: 50px;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    z-index: 2000;
    transition: var(--transition);
    border: none;
}

.whatsapp-float {
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
}

.card-float {
    bottom: 30px;
    left: 30px;
    background-color: var(--primary);
    color: var(--accent);
}

.whatsapp-float:hover, .card-float:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.card-float:hover { background-color: var(--accent); color: var(--primary); }
.whatsapp-float:hover { background-color: #128C7E; }

.whatsapp-float i, .card-float i { font-size: 1.5rem; }

/* Top Bar */
.top-bar {
    background: var(--primary-dark);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.85rem;
    z-index: 1001;
    position: relative;
}

.marquee-container {
    display: flex;
    align-items: center;
}

.marquee-label {
    background: var(--accent);
    color: var(--primary-dark);
    padding: 4px 12px;
    font-weight: 700;
    border-radius: 4px;
    margin-right: 15px;
    white-space: nowrap;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
}

.marquee {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
}

.marquee p {
    display: inline-block;
    padding-left: 100%;
    animation: marquee-anim 35s linear infinite;
    color: rgba(255,255,255,0.9);
}

@keyframes marquee-anim {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* Navigation Premium Upgrade */
#header {
    background: var(--white);
    height: 90px;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: var(--transition);
}

#header.scrolled {
    height: 75px;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.ca-logo { height: 50px; width: auto; transition: var(--transition); }
#header.scrolled .ca-logo { height: 40px; }

.logo-text {
    display: flex;
    flex-direction: column;
}

.firm-name {
    font-size: 1.3rem;
    letter-spacing: 0.5px;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Montserrat', sans-serif;
}

.tagline {
    font-size: 0.7rem;
    color: var(--accent);
    display: block;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links li { margin-left: 20px; }

.nav-links a {
    text-decoration: none;
    color: var(--text-lead);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
    white-space: nowrap;
}

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

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

.nav-card-link {
    background: transparent;
    border: 1.5px solid var(--primary);
    color: var(--primary) !important;
    padding: 8px 18px;
    border-radius: var(--border-radius);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}
.nav-card-link::after { display: none; }
.nav-card-link:hover {
    background: var(--primary);
    color: var(--accent) !important;
    transform: translateY(-2px);
}

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

.mobile-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary);
    transition: var(--transition);
}

/* Premium Hero Section */
.hero {
    height: calc(100vh - 120px);
    min-height: 600px;
    background: url('https://images.unsplash.com/photo-1556761175-5973dc0f32e7?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(10, 25, 47, 0.9) 0%, rgba(10, 25, 47, 0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
}

.hero-tag {
    display: inline-block;
    padding: 6px 16px;
    background: var(--accent-light);
    color: var(--accent);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 50px;
    margin-bottom: 20px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(226, 184, 95, 0.3);
}

.hero-content h1 {
    font-size: 4.5rem;
    color: var(--white);
    margin-bottom: 25px;
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    color: rgba(255,255,255,0.85);
    max-width: 600px;
    font-weight: 300;
}

/* Buttons */
.btn {
    padding: 16px 36px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
}

.btn-primary {
    background: var(--accent);
    color: var(--primary-dark);
    box-shadow: 0 4px 15px rgba(226, 184, 95, 0.3);
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(226, 184, 95, 0.4);
}

.btn-outline {
    border: 2px solid rgba(255,255,255,0.5);
    color: var(--white);
    background: transparent;
    backdrop-filter: blur(5px);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.btn-secondary {
    background: var(--primary);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--primary-light);
    box-shadow: 0 5px 15px rgba(10,25,47,0.2);
}

.hero-btns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* About Us Modern */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content p {
    font-size: 1.05rem;
    color: var(--text-light);
}

.about-content strong {
    color: var(--primary);
}

.about-points {
    list-style: none;
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.about-points li {
    font-weight: 600;
    display: flex;
    align-items: center;
    color: var(--text-lead);
}

.about-points li i {
    color: var(--accent);
    margin-right: 12px;
    font-size: 1.25rem;
    background: var(--accent-light);
    width: 30px; height: 30px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
}

.image-stack {
    position: relative;
    padding: 20px;
}

.image-stack::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: 2px solid var(--accent);
    border-radius: var(--border-radius-lg);
    z-index: 1;
    transform: translate(-10px, -10px);
}

.image-main {
    width: 100%;
    height: 450px;
    background: url('about-us.png') center/cover;
    border-radius: var(--border-radius-lg);
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-lg);
}

/* Service Modern Grid */
.services-modern-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-modern-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    position: relative;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
}

.service-modern-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 4px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-modern-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-elegant);
    border-color: transparent;
}

.service-modern-card:hover::before { transform: scaleX(1); }

.card-icon-wrapper {
    width: 60px; height: 60px;
    background: var(--bg-alt);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 25px;
    transition: var(--transition);
}

.service-modern-card:hover .card-icon-wrapper {
    background: var(--accent-light);
}

.card-icon {
    font-size: 1.8rem;
    color: var(--primary);
    transition: var(--transition);
}

.service-modern-card:hover .card-icon { color: var(--accent); }

.service-modern-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.service-modern-card ul {
    list-style: none;
    flex-grow: 1;
}

.service-modern-card li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
    font-size: 0.95rem;
    color: var(--text-light);
}

.service-modern-card li::before {
    content: "•";
    position: absolute;
    left: 0; top: 0;
    color: var(--accent);
    font-size: 1.2rem;
    line-height: inherit;
}

/* Page Header (Blog/Services) */
.page-header {
    background: var(--primary);
    color: var(--white);
    padding: 120px 0 60px;
    position: relative;
    text-align: center;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; width: 100%; height: 30px;
    background: var(--bg-light);
    border-radius: 30px 30px 0 0;
}

.page-header h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 15px;
}

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

/* Accordion for Services Page */
.service-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.accordion-header {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: var(--white);
    transition: var(--transition);
}

.accordion-header:hover { background: var(--bg-alt); }

.accordion-title {
    font-family: 'Inter', 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 15px;
}

.service-num {
    background: var(--accent);
    color: var(--primary);
    min-width: 30px; height: 30px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem; font-weight: 700;
}

.accordion-icon {
    transition: transform 0.3s ease;
    color: var(--accent);
}

.accordion-item.active .accordion-icon { transform: rotate(180deg); }
.accordion-item.active .accordion-header { border-bottom: 1px solid #e2e8f0; }

.accordion-content {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: var(--white);
    color: var(--text-light);
}

.accordion-item.active .accordion-content {
    padding: 25px;
    max-height: 500px; /* arbitrary max height */
}

/* Blog Layout */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.blog-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid #e2e8f0;
}

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

.blog-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.blog-content { padding: 25px; }

.blog-meta {
    display: flex;
    gap: 15px;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.blog-meta span { display: flex; align-items: center; gap: 5px; }
.blog-meta i { color: var(--accent); }

.blog-title {
    font-size: 1.35rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-title a { color: var(--primary); }
.blog-title a:hover { color: var(--accent); }

.blog-excerpt {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.read-more {
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.read-more i { transition: transform 0.3s ease; }
.read-more:hover i { transform: translateX(5px); color: var(--accent); }

/* Utilities Component */
.utilities-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
}

.tabs {
    display: flex;
    gap: 10px;
    margin: 30px 0;
    border-bottom: 2px solid var(--bg-alt);
}

.tab-btn {
    padding: 12px 25px;
    background: none;
    border: none;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    position: relative;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.tab-btn.active {
    color: var(--primary);
}

.tab-btn.active::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent);
}

.calculator-box {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid #e2e8f0;
}

.input-row { margin-bottom: 20px; }

.input-row label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-lead);
    font-size: 0.95rem;
}

.input-row input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #cbd5e1;
    border-radius: var(--border-radius);
    background: #f8fafc;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.input-row input:focus {
    outline: none;
    border-color: var(--accent);
    background: var(--white);
    box-shadow: 0 0 0 3px var(--accent-light);
}

.calc-result {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px dashed #cbd5e1;
}

.calc-result span { color: var(--text-light); font-weight: 600; }
.calc-result h3 { font-size: 2.5rem; color: var(--primary); margin-top: 5px; }

/* Compliance Card */
.compliance-card {
    background: var(--primary);
    color: var(--white);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.compliance-card::before {
    content: '';
    position: absolute;
    top: -50px; right: -50px;
    width: 150px; height: 150px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0.1;
}

.compliance-card h3 { color: var(--white); margin-bottom: 25px; display: flex; align-items: center; gap: 10px; }
.compliance-card h3 i { color: var(--accent); }

.due-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.due-date {
    font-weight: 700;
    color: var(--accent);
    min-width: 80px;
    font-size: 0.9rem;
}

.due-text {
    font-weight: 500;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.9);
}

.calendar-links {
    margin-top: 25px;
    display: flex; flex-direction: column; gap: 15px;
}

.link-more {
    display: inline-flex;
    align-items: center; gap: 8px;
    text-decoration: none;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.95rem;
}

/* Resources Segment */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.resource-group {
    background: rgba(255,255,255,0.03);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
}

.resource-group:hover {
    background: rgba(255,255,255,0.05);
    border-color: var(--accent);
}

.resource-group h4 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.resource-group h4 i { color: var(--accent); }

.resource-group ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.resource-group a {
    color: var(--white);
    font-size: 0.9rem;
    padding: 10px 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 50px;
    font-weight: 600;
}

.resource-group a:hover {
    background: var(--accent);
    color: var(--primary);
}

/* Contact Segment */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-form-side {
    background: var(--white);
    padding: 50px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.contact-form-side h3 { margin-bottom: 30px; font-size: 1.8rem; }

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

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid #cbd5e1;
    background: #f8fafc;
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: var(--white);
    box-shadow: 0 0 0 3px var(--accent-light);
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary);
    background: var(--accent);
    width: 50px; height: 50px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
}

.info-item h5 { margin-bottom: 5px; font-size: 1.1rem; }
.info-item p { color: var(--text-light); font-size: 0.95rem; margin-bottom: 0; }

.contact-ctas {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.map-embed {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    margin-top: 40px;
    box-shadow: var(--shadow);
}

/* Footer Premium */
.footer-modern {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.7);
    padding: 80px 0 0;
    position: relative;
}

.footer-modern::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 4px;
    background: var(--accent);
}

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

.footer-col.brand h3 { color: var(--white); font-size: 1.5rem; margin-bottom: 5px; }
.footer-col.brand p { color: var(--accent); font-weight: 600; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1px; }

.footer-col h5 { color: var(--white); margin-bottom: 25px; font-size: 1.2rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { color: rgba(255,255,255,0.7); font-size: 0.95rem; }
.footer-col a:hover { color: var(--accent); }

.social-icons { display: flex; gap: 15px; margin-top: 25px; }
.social-icons a {
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
}
.social-icons a:hover { background: var(--accent); color: var(--primary-dark); transform: translateY(-3px); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 25px 0;
    text-align: center;
    font-size: 0.9rem;
}

.disclaimer { font-size: 0.8rem; opacity: 0.6; margin-top: 15px; max-width: 900px; margin-left: auto; margin-right: auto; }

/* Responsive adjustments */
@media (max-width: 992px) {
    .about-container, .utilities-wrapper, .contact-wrapper, .footer-grid { grid-template-columns: 1fr; }
    .hero-content h1 { font-size: 3.5rem; }
    .page-header h1 { font-size: 2.8rem; }
    
    .nav-links { 
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 90px);
        background: var(--white);
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        transition: left 0.3s ease;
        padding: 30px 0;
        z-index: 1000;
        overflow-y: auto;
    }
    #header.scrolled .nav-links {
        top: 75px;
        height: calc(100vh - 75px);
    }
    .nav-links.active {
        left: 0;
    }
    .nav-links li {
        margin: 10px 0;
        text-align: center;
    }
    .nav-card-link {
        margin: 10px auto;
        justify-content: center;
        max-width: 200px;
    }
    .mobile-toggle { display: flex; z-index: 1001; }
    
    .mobile-toggle.is-active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .mobile-toggle.is-active .bar:nth-child(2) {
        opacity: 0;
    }
    .mobile-toggle.is-active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

@media (max-width: 768px) {
    .section { padding: 60px 0; }
    .hero { min-height: 500px; }
    .hero-content h1 { font-size: 2.8rem; }
    .hero-content p { font-size: 1.1rem; }
}

/* --- Google Translate Customization --- */
.custom-translate-wrapper {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 3px 12px;
    border-radius: 50px;
    border: 1px solid rgba(226, 184, 95, 0.3);
    margin-right: 20px;
    flex-shrink: 0;
}
#google_translate_element {
    display: flex;
    align-items: center;
}
.goog-te-gadget {
    color: transparent !important;
    display: flex;
    align-items: center;
    font-size: 0px !important; 
}
.goog-te-combo {
    padding: 2px 5px !important;
    border-radius: 4px !important;
    border: none !important;
    background: transparent !important;
    color: var(--accent) !important;
    font-size: 14px !important;
    font-family: 'Open Sans', sans-serif !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    outline: none !important;
    width: 130px !important;
    display: block !important;
}
.goog-te-combo option {
    background: var(--primary-dark) !important;
    color: var(--white) !important;
}
.goog-logo-link, .goog-te-gadget > span, .goog-te-gadget img { 
    display: none !important; 
}
body { top: 0 !important; }
.VIpgJd-ZVi9od-ORHb-OEVmcd { display: none !important; }
