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

:root {
    --primary-gold: #c5b358;
    --dark-gold: #a69044;
    --light-gold: #e6d485;
    --red-accent: #DC143C;
    --gold: #FFD700;
    --text-dark: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

/* Popup styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.popup-content {
    background: white;
    color: #333;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: popupSlideIn 0.5s ease-out;
    position: relative;
    border: 2px solid var(--primary-gold, #c5b358);
}

@keyframes popupSlideIn {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: #666;
    font-size: 28px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.popup-close:hover {
    opacity: 1;
}

.popup-headline {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 25px;
    color: var(--primary-gold, #c5b358);
    line-height: 1.3;
}

.popup-phone {
    font-size: 32px;
    font-weight: bold;
    margin: 25px 0;
    color: #333;
    text-decoration: none;
}

.popup-phone:hover {
    color: var(--primary-gold, #c5b358);
}

.popup-cta {
    background: linear-gradient(135deg, var(--primary-gold, #c5b358), #d4c467);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 25px;
    box-shadow: 0 8px 25px rgba(197, 179, 88, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.popup-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(197, 179, 88, 0.5);
}

/* Mobile responsive popup */
@media (max-width: 768px) {
    .popup-content {
        max-width: 90%;
        width: 90%;
        padding: 30px 20px;
    }

    .popup-headline {
        font-size: 24px;
    }

    .popup-phone {
        font-size: 28px;
    }

    .popup-cta {
        font-size: 16px;
        padding: 12px 24px;
    }
}

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

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

/* Top Bar */
.top-bar {
    background: var(--primary-gold);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-content a {
    color: var(--white);
    text-decoration: none;
}

/* Header */
header {
    background: var(--white);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-gold);
    padding: 12px 0px;
}

.logo span {
    background: var(--primary-gold);
    color: var(--white);
    padding: 5px 10px;
    margin-right: 10px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

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

.nav-menu a:hover {
    color: var(--primary-gold);
}

.mobile-menu {
    display: none;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, var(--primary-gold) 100%);
    color: var(--white);
    padding: 0;
    margin-top: 0;
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: radial-gradient(circle at 30% 20%, rgba(197, 179, 88, 0.3) 0%, transparent 50%), */
            /* radial-gradient(circle at 70% 80%, rgba(197, 179, 88, 0.2) 0%, transparent 50%); */
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 600px;
    align-items: center;
}

.hero-content {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* background: linear-gradient(135deg, rgba(26, 26, 46, 0.95) 0%, rgba(22, 33, 62, 0.95) 100%); */
    position: relative;
    z-index: 2;
}

.hero-content::after {
    content: '';
    position: absolute;
    right: -2px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--primary-gold), transparent);
    animation: pulse 2s ease-in-out infinite alternate;
}

@keyframes pulse {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

.hero-image {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.hero h1 {
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-gold);
}

.hero h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--white), var(--primary-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-features {
    margin-bottom: 40px;
}

.hero-features p {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.preeminent-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--red-accent), #B91C3C);
    padding: 12px 24px;
    margin: 30px 0;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 30px;
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.4);
    animation: badgeGlow 2s ease-in-out infinite alternate;
}

@keyframes badgeGlow {
    0% { box-shadow: 0 8px 25px rgba(220, 20, 60, 0.4); }
    100% { box-shadow: 0 12px 35px rgba(220, 20, 60, 0.6); }
}

.hero-contact {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.phone-number {
    font-size: 32px;
    font-weight: bold;
}

.consultation-text {
    font-size: 14px;
}

/* Trust Badges */
.trust-badges {
    background: var(--white);
    padding: 40px 0;
    text-align: center;
}

.badges-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: center;
}

.badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 150px;
}

.badge-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid var(--primary-gold);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--white);
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.avvo-badge {
    background: linear-gradient(135deg, #00BCD4, #0097A7);
    color: var(--white);
}

.stars {
    color: var(--gold);
    font-size: 20px;
    margin: 5px 0;
}

/* Main Content Section */
.main-content {
    padding: 60px 0;
}

.content-title {
    font-size: 42px;
    color: var(--primary-gold);
    margin-bottom: 40px;
    text-align: center;
    font-weight: bold;
}

/* About Section */
.about-section {
    background: var(--bg-light);
    padding: 60px 0;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-content h2 {
    color: var(--primary-gold);
    font-size: 36px;
    margin-bottom: 30px;
}

.about-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-light);
}

/* What Makes Section */
.what-makes {
    padding: 60px 0;
    background: var(--white);
}

.what-makes h2 {
    color: var(--primary-gold);
    font-size: 36px;
    margin-bottom: 30px;
    text-align: center;
}

.what-makes-content {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.what-makes-content ul {
    margin: 20px 0;
    padding-left: 20px;
}

.what-makes-content li {
    margin-bottom: 15px;
    color: var(--text-light);
}

/* CTA Section */
.cta-section {
    background: var(--primary-gold);
    color: var(--white);
    padding: 40px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-button {
    background: var(--red-accent);
    color: var(--white);
    padding: 15px 40px;
    font-size: 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 20px;
}

.cta-button:hover {
    background: #B91C3C;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* DUI Laws Section */
.dui-laws {
    padding: 60px 0;
    background: var(--bg-light);
}

.dui-laws h2 {
    color: var(--primary-gold);
    font-size: 36px;
    margin-bottom: 30px;
    text-align: center;
}

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

.law-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.law-card h3 {
    color: var(--primary-gold);
    margin-bottom: 15px;
}

/* Resources Section */
.resources {
    padding: 60px 0;
    background: var(--white);
}

.faq-item {
    margin-bottom: 25px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 10px;
    border-left: 4px solid var(--primary-gold);
}

.resources h2 {
    color: var(--primary-gold);
    font-size: 36px;
    margin-bottom: 30px;
    text-align: center;
}

.resources-list {
    max-width: 800px;
    margin: 0 auto;
}

.resource-item {
    padding: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.resource-item h3 {
    color: var(--primary-gold);
    margin-bottom: 10px;
}

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

.testimonials h2 {
    color: var(--primary-gold);
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
}

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

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

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

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: bold;
    color: var(--primary-gold);
}

/* Contact Form Section */
.contact-section {
    padding: 60px 0;
    background: var(--white);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.form-container h2 {
    color: var(--primary-gold);
    font-size: 32px;
    margin-bottom: 30px;
}

.contact-form {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-gold);
}

.submit-button {
    width: 100%;
    padding: 15px;
    background: var(--primary-gold);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-button:hover {
    background: var(--dark-gold);
}

.contact-info {
    padding: 30px;
}

.contact-info h3 {
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.contact-info-item {
    margin-bottom: 20px;
}

.contact-info-item strong {
    color: var(--text-dark);
    display: block;
    margin-bottom: 5px;
}

/* Footer */
footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-column h3 {
    margin-bottom: 20px;
    color: var(--white);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #555;
    margin-top: 30px;
}

.footer-bottom p {
    margin-bottom: 10px;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .mobile-menu {
        display: block;
        cursor: pointer;
        padding: 10px;
    }

    .mobile-menu.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .mobile-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .mobile-menu span {
        display: block;
        width: 25px;
        height: 3px;
        background: var(--text-dark);
        margin: 5px 0;
        transition: 0.3s;
    }

    .hero-container {
        grid-template-columns: 1fr;
    }

    .hero-content::after {
        display: none;
    }

    .hero-image {
        min-height: 200px;
    }

    .phone-number {
        font-size: 24px;
    }

    .content-title {
        font-size: 28px;
    }

            .contact-container {
                grid-template-columns: 1fr;
            }

            /* About section responsive */
            .about-section .container > div[style*="grid"] {
                grid-template-columns: 1fr !important;
            }

            .about-section .container > div[style*="grid"] > div:last-child {
                order: -1;
                margin-bottom: 30px;
            }

    .badges-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}
