:root {
    --bg-color: #050a14;
    --text-color: #e0e6ed;
    --primary-color: #0b162a;
    --accent-color: #d4af37;
    /* Metallic Gold */
    --accent-color-hover: #f9d768;
    --glass-bg: rgba(11, 22, 42, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-heading: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    color: #fff;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

/* Header */
.glass-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    padding: 1rem 0;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

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

.logo-img {
    height: 60px;
    /* Adjust based on navbar height */
    width: auto;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    /* Adds depth */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-img:hover {
    transform: translateY(-2px);
    /* Subtle lift effect */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links li a:hover {
    color: var(--accent-color);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.6;
    z-index: -1;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, transparent 0%, var(--bg-color) 90%);
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-content .highlight {
    color: var(--accent-color);
    font-size: 3rem;
    display: block;
    margin-top: 0.5rem;
}

.hero-content p {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    color: #cbd5e1;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

/* Services Section */
.services-section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.services-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: var(--accent-color);
}

.services-subsection-title {
    margin-top: 6rem;
    margin-bottom: 1rem !important;
    /* Override standard h2 margin */
}

.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    color: #a0aec0;
    font-size: 1.1rem;
}

.cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.specialist-list {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
    text-align: center;
}

.specialist-list h3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.specialist-list ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.specialist-list li {
    font-size: 0.95rem;
    color: #a0aec0;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
}

.specialist-list li strong {
    color: #e0e6ed;
}

.card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: 8px;
    transition: transform 0.3s ease, border-color 0.3s ease;
    flex: 0 1 320px;
    /* Flexbox: Base width 320px, can shrink but prefer this size */
    width: 100%;
    /* Ensure it takes width on small screens */
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.05);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.card p {
    color: #a0aec0;
    font-size: 0.95rem;
}

/* Why Us Comparison Section */
.comparison-section {
    padding: 6rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.comparison-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    /* Changed to separate for border-radius to work on cells if needed, or stick to collapse but specific styling */
    border-spacing: 0;
    background: rgba(11, 22, 42, 0.6);
    /* Darker background */
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    /* Stronger shadow */
}

.comparison-table th,
.comparison-table td {
    padding: 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    vertical-align: middle;
}

.comparison-table th {
    background: rgba(11, 22, 42, 0.95);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 1px;
    color: #fff;
    text-transform: uppercase;
    border-bottom: 2px solid var(--glass-border);
}

/* Feature Column */
.comparison-table td:first-child,
.comparison-table th:first-child {
    text-align: left;
    padding-left: 2rem;
    width: 25%;
    /* Reduced width */
}

.comparison-table td:first-child {
    font-weight: 600;
    color: #e0e6ed;
    font-size: 1.1rem;
}

/* Middle Columns Generic */
.comparison-table td,
.comparison-table th {
    width: 25%;
}

/* Default Table (3 Col): Highlight Last */
.comparison-table:not(#full-matrix) th:last-child {
    background: linear-gradient(to bottom, rgba(212, 175, 55, 0.1), rgba(11, 22, 42, 0.95));
    color: var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
    font-weight: 800;
    /* Increased font weight */
    letter-spacing: 0.5px;
}

.comparison-table:not(#full-matrix) td:last-child {
    background: rgba(212, 175, 55, 0.03);
    border-left: 1px solid rgba(212, 175, 55, 0.1);
}

/* Full Matrix (4 Col): Highlight 2nd Column (USA) */
#full-matrix th:nth-child(2) {
    background: linear-gradient(to bottom, rgba(212, 175, 55, 0.1), rgba(11, 22, 42, 0.95));
    color: var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
    font-weight: 800;
    /* Increased font weight */
    letter-spacing: 0.5px;
}

#full-matrix td:nth-child(2) {
    background: rgba(212, 175, 55, 0.03);
    border-right: 1px solid rgba(212, 175, 55, 0.1);
    border-left: 1px solid rgba(212, 175, 55, 0.1);
}

/* Hover effects */
.comparison-table:not(#full-matrix) tr:hover td:last-child,
#full-matrix tr:hover td:nth-child(2) {
    background-color: rgba(212, 175, 55, 0.08);
    /* Gold hint on hover */
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:hover td {
    background-color: rgba(255, 255, 255, 0.05);
}



.check-icon {
    color: #48bb78;
    font-size: 1.4rem;
    margin-right: 0.5rem;
    vertical-align: middle;
}

.cross-icon {
    color: #f56565;
    font-size: 1.4rem;
    margin-right: 0.5rem;
    vertical-align: middle;
}

.price-text {
    font-family: var(--font-body);
    color: #a0aec0;
    font-size: 1rem;
}

.included-text {
    font-weight: 700;
    color: var(--accent-color);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

/* About Section */
.about-section {
    padding: 6rem 2rem;
    background: linear-gradient(to right, var(--primary-color), var(--bg-color));
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #fff;
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.text-link {
    color: var(--accent-color);
    text-decoration: none;
    border-bottom: 1px dashed var(--accent-color);
}

.text-link:hover {
    border-bottom-style: solid;
}

/* Contact Section */
.contact-section {
    padding: 6rem 2rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 3rem;
    text-align: left;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: #fff;
    border-radius: 4px;
    font-family: var(--font-body);
    width: 100%;
    /* Ensure full width */
    box-sizing: border-box;
    /* Include padding in width */
}

.contact-form select option {
    background: #0b162a;
    /* Dark background for options */
    color: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--accent-color);
}

.submit-button {
    padding: 1rem;
    background: var(--accent-color);
    color: var(--primary-color);
    border: none;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.submit-button:hover {
    background: var(--accent-color-hover);
}

.contact-info {
    margin-top: 3rem;
    color: #a0aec0;
}

/* Footer */
footer {
    padding: 4rem 2rem 2rem;
    background: #0b162a;
    /* Slightly darker than main bg */
    border-top: 1px solid var(--glass-border);
    color: #a0aec0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
    text-align: center;
}

.footer-section h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section p {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-color);
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--accent-color);
    color: #fff;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    font-size: 0.85rem;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
}

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

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

.delay-1 {
    animation-delay: 0.2s;
    transition-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
    transition-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
    transition-delay: 0.6s;
}

/* Screen-reader only utility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Mobile nav toggle button */
.nav-toggle {
    display: none;
    background: none;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    font-size: 1.4rem;
    padding: 0.25rem 0.65rem;
    cursor: pointer;
    border-radius: 4px;
    line-height: 1;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content .highlight {
        font-size: 2rem;
    }

    .nav-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        gap: 0;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(5, 10, 20, 0.97);
        border-top: 1px solid var(--glass-border);
        padding: 0.5rem 0;
        z-index: 999;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links li {
        padding: 0.8rem 1.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
}