:root {
    --dark-blue: #0A192F;
    --gold: #D4AF37;
    --white: #FFFFFF;
    --light-gray: #F4F7F9;
    --text-color: #333333;
    --accent-gold: #C5A028;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--white);
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-header {
    background-color: var(--dark-blue);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    color: var(--white);
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
}

.logo span {
    color: var(--gold);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--dark-blue);
    min-width: 250px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1005;
    border-top: 2px solid var(--gold);
}

.dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 14px;
}

.dropdown-content a:hover {
    background-color: rgba(255,255,255,0.1);
    color: var(--gold);
}

.dropdown:hover .dropdown-content {
    display: block;
}

.hero {
    background: linear-gradient(135deg, var(--dark-blue) 0%, #1a2a44 100%);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

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

.hero h1 span {
    color: var(--gold);
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #CBD5E0;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s, background-color 0.3s;
}

.btn-gold {
    background-color: var(--gold);
    color: var(--dark-blue);
}

.btn-gold:hover {
    background-color: var(--accent-gold);
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
    margin-left: 10px;
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--dark-blue);
}

/* Trust Signals */
.trust-signals {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.signal {
    display: flex;
    align-items: center;
    font-size: 16px;
}

.signal i {
    color: var(--gold);
    margin-right: 10px;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1001;
    text-decoration: none;
}

/* Sticky Consultation */
.sticky-footer-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--dark-blue);
    padding: 15px 0;
    text-align: center;
    z-index: 999;
}

@media (max-width: 768px) {
    .sticky-footer-cta {
        display: block;
    }
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    padding: 60px 0;
}

.main-content {
    background: white;
}

.sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-form {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border: 1px solid #eee;
}

.sidebar-form h3 {
    margin-bottom: 20px;
    color: var(--dark-blue);
    font-size: 20px;
    border-bottom: 2px solid var(--gold);
    padding-bottom: 10px;
}

/* Mobile Responsive Grid */
@media (max-width: 992px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
    .sidebar {
        position: static;
        order: -1; /* Move form to top on mobile */
    }
}

/* Hero Redesign */
.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
    text-align: left;
}

.hero-text h1 {
    font-size: 48px;
    margin-bottom: 25px;
}

.hero-form-container {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.hero-form-container h3 {
    color: var(--gold);
    margin-bottom: 20px;
    text-align: center;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: var(--light-gray);
}

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

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: bold;
    color: var(--dark-blue);
}

.testimonial-stars {
    color: var(--gold);
    margin-bottom: 10px;
}

/* Icons Grid */
.icon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.icon-item {
    text-align: center;
    padding: 20px;
}

.icon-item i {
    font-size: 40px;
    color: var(--gold);
    margin-bottom: 15px;
}

@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Breadcrumbs */
.breadcrumbs {
    padding: 15px 25px;
    font-size: 13px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-top: 30px;
    margin-bottom: 30px;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 10px;
}

.breadcrumbs a {
    color: var(--dark-blue);
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.breadcrumbs a:hover {
    color: var(--gold);
}

.breadcrumbs span.sep {
    color: #ccc;
    font-size: 10px;
}

.breadcrumbs .current {
    color: #888;
}

/* Page Title Bar */
.page-title-bar {
    padding: 30px 0;
    text-align: left;
    background: white;
    border-bottom: 1px solid #eee;
}

.page-title-bar h1 {
    font-size: 32px;
    color: var(--dark-blue);
    margin: 0;
    position: relative;
    display: inline-block;
}

.page-title-bar h1::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 10px 0 0;
}

.page-title-bar p {
    margin-top: 15px;
    color: #666;
    font-size: 16px;
}

/* Modernized Forms */
.hero-form-container {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 35px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.sidebar-form {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    border: 1px solid #f0f0f0;
}

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

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #fafafa;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: white;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.human-check {
    background: #fdfaf0;
    padding: 20px;
    border-radius: 10px;
    border: 1px dashed var(--gold);
    margin-bottom: 30px;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--dark-blue) 0%, #1e3a5f 100%);
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(10, 25, 47, 0.2);
}

.btn-submit:hover {
    background: linear-gradient(135deg, var(--gold) 0%, var(--accent-gold) 100%);
    color: var(--dark-blue);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 { font-size: 32px; }
    nav ul { display: none; }
}
/* Testimonial Ticker */
.testimonial-ticker-wrap {
    background: #fff;
    padding: 60px 0;
    overflow: hidden;
    border-top: 1px solid #eee;
    border-bottom: 2px solid var(--gold);
}

.ticker-title {
    text-align: center;
    color: var(--dark-blue);
    margin-bottom: 40px;
    font-size: 28px;
}

.testimonial-ticker {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scroll-left 60s linear infinite;
}

.testimonial-ticker:hover {
    animation-play-state: paused;
}

.ticker-item {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 12px;
    width: 350px;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}


@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Services Grid Fix & Premium Styling */
.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
    border-color: var(--gold);
}

.service-card-icon {
    width: 60px;
    height: 60px;
    background: #fffcf0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 24px;
}

.service-card h3 {
    color: var(--dark-blue);
    margin-bottom: 15px;
    font-size: 20px;
}

.service-card p {
    color: #666;
    font-size: 14px;
    margin-bottom: 25px;
    flex-grow: 1;
}

.service-card a {
    font-weight: bold;
    color: var(--gold);
    text-decoration: none;
    transition: 0.3s;
}

.service-card a:hover {
    color: var(--accent-gold);
}

@media (max-width: 768px) {
    .services-container {
        grid-template-columns: 1fr;
    }
}
