/* Root Variables - Premium Palette */
:root {
    --primary: #0044cc;
    /* Trustworthy Deep Blue */
    --primary-dark: #003399;
    --secondary: #00d4ff;
    /* Modern Cyan Highlight */
    --accent: #ff6b00;
    /* Vibrant Orange for Conversions */
    --dark: #0f172a;
    /* Slate Dark */
    --light: #f8fafc;
    --white: #ffffff;
    --gray: #64748b;
    --glass: rgba(255, 255, 255, 0.95);
    --shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Sticky Domain Sale Banner */
.domain-sale-banner {
    background: linear-gradient(90deg, var(--dark) 0%, #1e293b 100%);
    color: var(--white);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--accent);
}

.banner-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    font-size: 0.9rem;
}

.banner-content span {
    color: var(--accent);
}

.pulse-icon {
    color: var(--accent);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        opacity: 1;
        text-shadow: 0 0 5px var(--accent);
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
        text-shadow: 0 0 5px var(--accent);
    }
}

/* Navbar */
.navbar {
    background-color: var(--white);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 900;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--dark);
    letter-spacing: -1px;
}

.logo span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    align-items: center;
}

.nav-links li a {
    font-weight: 500;
    font-size: 1rem;
}

.nav-links li a:hover {
    color: var(--primary);
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.cta-button.small {
    padding: 6px 16px;
    font-size: 0.8rem;
    background-color: var(--accent);
    color: var(--white);
    border: none;
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 68, 204, 0.3);
}

.cta-button.secondary {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.hero .cta-button.primary {
    background: linear-gradient(135deg, var(--accent) 0%, #e65100 100%);
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4);
    border: none;
}

.hero .cta-button.secondary {
    border-color: var(--white);
    color: var(--white);
}

.hero .cta-button.secondary:hover {
    background-color: var(--white);
    color: var(--primary);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 120px 0 100px;
    background-image: url('https://images.unsplash.com/photo-1585704032915-c3400ca199e7?auto=format&fit=crop&q=80');
    /* Professional plumbing/construction background */
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(15, 23, 42, 0.85), rgba(0, 68, 204, 0.8));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.badge {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
    display: inline-block;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero .highlight {
    color: var(--secondary);
    background: linear-gradient(120deg, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 0.1) 100%);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* Stats Section */
.stats-bar {
    background-color: var(--white);
    margin-top: -50px;
    position: relative;
    z-index: 3;
    padding: 40px 0;
    border-bottom: 1px solid #e2e8f0;
    box-shadow: var(--shadow);
    border-radius: 0 0 20px 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.stat-item .number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    font-family: var(--font-heading);
}

.stat-item .label {
    font-size: 0.9rem;
    color: var(--gray);
    font-weight: 500;
}

/* Services Section */
.services {
    padding: 100px 0;
    background-color: var(--light);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    border: 1px solid #f1f5f9;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--primary);
}

.service-card .icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.service-card p {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.keyword-tag {
    display: inline-block;
    background-color: #eff6ff;
    color: var(--primary);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Domain Value Analysis */
.domain-value {
    padding: 100px 0;
    background-color: var(--white);
}

.value-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.value-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.value-text .blue {
    color: var(--primary);
}

.check-list {
    list-style: none;
}

.check-list li {
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
    font-size: 1.1rem;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--accent);
    font-weight: 800;
}

.mockup-card {
    background-color: var(--white);
    border: 1px solid #dfe1e5;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    font-family: arial, sans-serif;
}

.mockup-header {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.mockup-search-bar {
    background: #f1f3f4;
    padding: 10px 15px;
    border-radius: 20px;
    margin-bottom: 20px;
    color: #333;
    font-size: 0.9rem;
}

.mockup-result .link {
    color: #202124;
    font-size: 0.85rem;
    margin-bottom: 5px;
}

.mockup-result .title {
    color: #1a0dab;
    font-size: 1.25rem;
    cursor: pointer;
    margin-bottom: 3px;
}

.mockup-result .title:hover {
    text-decoration: underline;
}

.mockup-result .desc {
    color: #4d5156;
    font-size: 0.9rem;
    line-height: 1.58;
}

.caption {
    text-align: center;
    margin-top: 15px;
    font-size: 0.85rem;
    color: var(--gray);
    font-style: italic;
}

/* Footer */
footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 80px 0 20px;
    text-align: center;
}

.footer-cta h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.footer-cta p {
    font-size: 1.2rem;
    color: #94a3b8;
    margin-bottom: 40px;
}

.contact-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-box .note {
    margin-top: 15px;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.footer-bottom {
    margin-top: 80px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: #64748b;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: var(--white);
    padding: 40px;
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.closeable {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: var(--gray);
}

.modal-content h2 {
    margin-bottom: 10px;
    color: var(--primary);
}

.modal-content p {
    margin-bottom: 25px;
    color: var(--gray);
}

#offerForm input,
#offerForm textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
}

#offerForm textarea {
    height: 100px;
    resize: vertical;
}

#offerForm button {
    margin-top: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .banner-content {
        flex-direction: row;
        gap: 10px;
        text-align: left;
        justify-content: space-between;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .nav-links {
        display: none;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .value-container {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .cta-button {
        width: 100%;
        text-align: center;
    }

    .desktop-text {
        display: none;
    }

    .mobile-text {
        display: block;
        font-size: 0.9rem;
        margin-right: auto;
    }

    #offerBtn {
        width: auto;
        padding: 6px 15px;
    }
}

@media (min-width: 769px) {
    .mobile-text {
        display: none;
    }
}