:root {
    --primary: #F5B940; /* Mustard Yellow */
    --dark: #1A1A1A;
    --darker: #0d0d0d;
    --white: #FFFFFF;
    --light: #F5F5F5;
    --border: rgba(0,0,0,0.1);
    
    --font-main: 'Outfit', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-main);
    color: var(--dark);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
}

/* Decorative Text Highlights */
.highlight-action, .highlight-underline {
    position: relative;
    display: inline-block;
}

.action-lines {
    position: absolute;
    top: -25px;
    right: -35px;
    width: 40px;
    height: 40px;
    color: var(--white);
}

.underline {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 15px;
    color: var(--white);
    z-index: -1;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 32px;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    border: 2px solid transparent;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-primary {
    background-color: var(--primary);
    color: var(--dark);
}
.btn-primary:hover {
    box-shadow: 0 10px 20px rgba(232, 189, 83, 0.4);
}

.btn-dark {
    background-color: var(--dark);
    color: var(--primary);
}
.btn-dark:hover {
    box-shadow: 0 10px 20px rgba(26, 26, 26, 0.3);
}

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

.btn-outline-nav {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50px;
    background-color: transparent;
    color: var(--dark);
    border: 2px solid var(--dark);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline-nav:hover {
    background-color: var(--dark);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-outline-nav .arrow {
    transition: transform 0.3s ease;
}

.btn-outline-nav:hover .arrow {
    transform: translateX(5px);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 24px 0;
    transition: all 0.3s ease;
    background-color: var(--primary);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--white);
    background-color: var(--dark);
    padding: 4px 8px;
    border-radius: 4px;
    margin-left: 4px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-weight: 500;
    font-size: 1.1rem;
    white-space: nowrap;
}

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

/* Nav Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 0;
    width: 100%;
    height: 16px;
}

.nav-dropdown-header {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-dropdown-link {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-dropdown-link::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    margin-top: -3px;
    transition: transform 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-link::after {
    transform: rotate(-135deg);
    margin-top: 0;
}

.nav-dropdown-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--white);
    border-radius: 6px;
    transition: background 0.2s ease;
}

.nav-dropdown-toggle:hover {
    background: rgba(255,255,255,0.1);
}

.nav-dropdown-toggle svg {
    display: block;
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.nav-dropdown.open .nav-dropdown-toggle svg {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: var(--dark);
    border-radius: 16px;
    padding: 8px;
    min-width: 180px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    border: 2px solid var(--primary);
    box-shadow: 6px 6px 0px rgba(0,0,0,0.2);
}

@media (hover: hover) {
    .nav-dropdown:hover .nav-dropdown-menu {
        opacity: 1;
        pointer-events: auto;
        transform: translateX(-50%) translateY(12px);
    }
}

.nav-dropdown-menu a {
    display: block;
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 1rem;
    color: var(--white);
    transition: background 0.2s ease;
}

.nav-dropdown-menu a:hover {
    background: var(--primary);
    color: var(--dark);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--dark);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.active span {
    background: var(--white);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section */
.hero {
    background-color: var(--primary);
    position: relative;
    padding-top: 180px;
    padding-bottom: 100px;
    overflow: hidden;
}

.hero-inner {
    display: block;
    position: relative;
    z-index: 10;
}

.hero-content {
    max-width: 50%;
}

.hero-tagline {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 4.5rem);
    letter-spacing: -2px;
    margin-bottom: 24px;
    text-shadow: 2px 2px 0px rgba(255,255,255,0.2);
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 40px;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.stats-row {
    display: flex;
    gap: 48px;
    border-top: 2px solid rgba(26,26,26,0.1);
    padding-top: 24px;
}

.stat-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
}

.stat-icon {
    background-color: var(--dark);
    color: var(--primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon svg {
    width: 24px;
    height: 24px;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1;
}

.stat-text {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 4px;
    display: block;
}

.hero-image {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 55vw;
    max-width: 1000px;
    z-index: 5;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%);
    mask-image: linear-gradient(to right, transparent 0%, black 15%);
    pointer-events: none;
    display: block;
}

.circle-decoration {
    display: none;
}

.hero-dog-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center bottom;
}

/* Marquee */
.marquee-container {
    background-color: var(--dark);
    color: var(--primary);
    padding: 16px 0;
    overflow: hidden;
    white-space: nowrap;
    border-top: 4px solid var(--white);
    border-bottom: 4px solid var(--white);
    margin-bottom: 80px;
    transform: rotate(-2deg) scale(1.05);
}

.marquee {
    display: inline-block;
    animation: marquee 20s linear infinite;
    font-size: 1.5rem;
    font-weight: 900;
}

.marquee span {
    padding-right: 50px;
}

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

/* Feature Section */
.feature-section {
    padding: 120px 0;
    background-color: var(--white);
}

.feature-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.feature-image {
    position: relative;
    background: var(--light);
    border-radius: 30px;
    padding: 40px;
    text-align: center;
}

.floating-phone {
    max-width: 80%;
    border-radius: 30px;
    animation: floatPhone 7s ease-in-out infinite;
}

@keyframes floatPhone {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

.floating-card {
    position: absolute;
    background: var(--white);
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    animation: floatCard 5s ease-in-out infinite reverse;
}

.floating-card.top-right {
    top: 10%;
    right: -20px;
}

.floating-card.bottom-left {
    bottom: 20%;
    left: -20px;
}

.floating-card strong {
    color: var(--primary);
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.floating-card p {
    font-weight: 700;
    margin-top: 4px;
}

@keyframes floatCard {
    0% { transform: translateY(0px); }
    50% { transform: translateY(10px); }
    100% { transform: translateY(0px); }
}

.tag {
    display: inline-block;
    background: var(--light);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.section-title {
    font-size: clamp(3rem, 5vw, 4rem);
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.section-text {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 40px;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
}

.feature-list .icon {
    background: var(--light);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    flex-shrink: 0;
}

.feature-list .icon svg {
    width: 28px;
    height: 28px;
    color: var(--dark);
}

.feature-list h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.feature-list p {
    color: #666;
}

/* Process Section */
.process-section {
    padding: 120px 0;
    background-color: var(--light);
}

.process-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

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

.process-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 4px solid transparent;
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-bottom-color: var(--primary);
}

.process-card .icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.process-card .icon-wrapper svg {
    width: 28px;
    height: 28px;
    color: var(--dark);
}

.process-card h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.process-card p {
    color: #555;
    font-size: 1.05rem;
}

/* Integration Section */
.integration-section {
    padding: 120px 0;
    background-color: var(--white);
    border-bottom: 1px solid var(--border);
}

.integration-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.integration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    align-items: center;
}

.integration-logo {
    background: var(--light);
    border: 1px solid var(--border);
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    font-weight: 900;
    font-size: 1.1rem;
    color: var(--dark);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.integration-logo:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.integration-logo svg {
    width: 36px;
    height: 36px;
    color: var(--primary);
}

/* Pricing Section */
.pricing-section {
    padding: 120px 0;
    background-color: var(--white);
}

.pricing-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--light);
    border-radius: 30px;
    padding: 50px;
    position: relative;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.pricing-card.premium {
    background: var(--dark);
    color: var(--white);
    border-color: var(--primary);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--primary);
    color: var(--dark);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.pricing-card .price {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 24px;
    display: flex;
    align-items: baseline;
}

.pricing-card .price .price-suffix {
    font-size: 1.2rem;
    font-weight: 500;
    color: #777;
    margin-left: 8px;
}

.pricing-card.premium .price .price-suffix {
    color: #bbb;
}

.county-input-wrap {
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    padding: 8px 16px;
    border-radius: 12px;
    border: 1px solid var(--border);
}

.pricing-card.premium .county-input-wrap {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
}

.county-input-wrap label {
    font-weight: 700;
    font-size: 1rem;
}

.county-input {
    width: 60px;
    padding: 8px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
}

.county-input:focus {
    outline: none;
    border-color: var(--primary);
}

.pricing-features {
    list-style: none;
    margin-bottom: 40px;
    flex: 1;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.pricing-features li::before {
    content: '✓';
    color: var(--primary);
    font-weight: 900;
    font-size: 1.2rem;
}

.pricing-card.premium .pricing-features li::before {
    color: var(--primary);
}

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

.cta-inner h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 16px;
}

.cta-inner p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    font-weight: 500;
}

.cta-form {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
    gap: 16px;
}

.cta-form input {
    flex: 1;
    padding: 16px 24px;
    border-radius: 50px;
    border: none;
    font-size: 1.1rem;
    font-family: inherit;
    outline: none;
}

.cta-form input:focus {
    box-shadow: 0 0 0 4px rgba(26,26,26,0.1);
}

/* Footer */
.footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 80px 0 24px;
}

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

.footer-col .logo {
    margin-bottom: 24px;
}

.footer-col p {
    color: #999;
    margin-bottom: 16px;
}

.footer-col h3 {
    font-size: 1.2rem;
    margin-bottom: 24px;
    color: var(--primary);
}

.footer-col a {
    display: block;
    color: #999;
    margin-bottom: 12px;
}

.footer-col a:hover {
    color: var(--primary);
}

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



/* Responsive */
@media (max-width: 992px) {
    .hero {
        padding-top: 120px;
        padding-bottom: 0;
    }
    
    .hero-content {
        max-width: 100%;
        padding-bottom: 20px;
    }
    
    .hero-inner, .feature-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        margin-top: 40px;
    }

    .hero-subtitle {
        margin: 0 auto 40px;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 1rem;
    }

    .stats-row {
        justify-content: center;
    }

    .hero-image {
        position: relative;
        left: 0;
        transform: none;
        width: 100%;
        height: 500px;
        top: 0;
        bottom: 0;
        -webkit-mask-image: none;
        mask-image: none;
        max-width: none;
    }
    
    .hero-dog-img {
        object-position: center bottom;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--dark);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 32px 32px;
        gap: 8px;
        transition: right 0.3s ease;
        z-index: 999;
        box-shadow: -10px 0 30px rgba(0,0,0,0.2);
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links a {
        color: var(--white);
        font-size: 1.15rem;
        padding: 12px 0;
        width: 100%;
    }

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

    .nav-dropdown {
        width: 100%;
    }

    .nav-dropdown-link::after {
        display: none;
    }

    .nav-dropdown-toggle {
        display: flex;
    }

    .nav-dropdown-menu,
    .nav-dropdown:hover .nav-dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        pointer-events: auto;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0 0 0 16px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-dropdown.open .nav-dropdown-menu {
        max-height: 200px;
    }

    .nav-dropdown-menu a {
        padding: 10px 0;
        font-size: 1rem;
        color: rgba(255,255,255,0.7);
    }

    .nav-dropdown-menu a:hover {
        background: transparent;
        color: var(--primary);
    }

    .hamburger {
        display: flex;
        flex-shrink: 0;
    }

    .header-inner {
        gap: 8px;
    }

    .logo {
        font-size: 1rem;
        line-height: 1.2;
        display: flex;
        flex-direction: column;
    }

    .logo span {
        display: inline-block;
        width: fit-content;
        padding: 2px 6px;
        font-size: 0.9rem;
    }

    .header-actions .btn-outline-nav {
        font-size: 0.85rem;
        padding: 8px 14px;
        white-space: nowrap;
    }
    
    .feature-list li {
        text-align: left;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .feature-image {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 30px 20px;
    }

    .floating-phone {
        max-width: 100%;
        margin: 20px 0;
    }

    .floating-card {
        position: relative;
        top: auto !important;
        bottom: auto !important;
        left: auto !important;
        right: auto !important;
        width: 90%;
        animation: none;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    .floating-card.top-right {
        order: -1;
        margin-bottom: -20px;
        z-index: 2;
    }

    .floating-card.bottom-left {
        order: 1;
        margin-top: -20px;
        z-index: 2;
    }

    .pricing-card {
        padding: 30px;
    }

    .pricing-card .price {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .cta-form {
        flex-direction: column;
    }
}

/* =========================================
   INNER PAGE STYLES
   ========================================= */

.page-hero {
    background-color: var(--primary);
    padding: 160px 0 80px 0;
    text-align: center;
    border-bottom: 5px solid var(--dark);
}

.page-hero-inner {
    max-width: 800px;
    margin: 0 auto;
}

.page-hero .hero-title {
    font-size: 4rem;
    margin-bottom: 20px;
}

.page-hero .hero-subtitle {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
    color: var(--dark);
}

.service-details {
    padding: 80px 0;
    background-color: var(--white);
}

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

.service-main h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
    color: var(--dark);
    font-weight: 900;
}

.service-main h3 {
    font-size: 1.75rem;
    margin: 40px 0 20px 0;
    color: var(--dark);
}

.service-main p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 24px;
}

.feature-list-check {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.feature-list-check li {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 16px;
    padding-left: 36px;
    position: relative;
    color: var(--text-color);
}

.feature-list-check li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary);
    font-weight: 900;
    font-size: 1.2rem;
    background-color: var(--dark);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.sidebar-card {
    background-color: var(--light);
    padding: 40px;
    border-radius: 16px;
    border: 2px solid var(--border-color);
    margin-bottom: 24px;
}

.sidebar-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--dark);
}

.sidebar-card .price {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 16px;
}

.sidebar-card .price span {
    font-size: 1rem;
    color: var(--text-color);
    font-weight: 400;
}

.sidebar-card p {
    margin-bottom: 24px;
    color: var(--text-color);
    line-height: 1.6;
}

.highlight-card {
    background-color: var(--primary);
    border-color: var(--dark);
}

.w-100 {
    width: 100%;
    text-align: center;
    display: inline-block;
}

@media (max-width: 992px) {
    .service-grid {
        grid-template-columns: 1fr;
    }
    
    .page-hero .hero-title {
        font-size: 3rem;
    }
}

/* =========================================
   MINT STYLE REDESIGN (WEBSITE SEO PAGE)
   ========================================= */

.mint-hero {
    background-color: var(--primary);
    padding: 180px 0 100px;
    text-align: center;
    border-bottom: 8px solid var(--dark);
}

.mint-hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.mint-hero-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    max-width: 800px;
    margin: 0 auto 40px;
    color: var(--dark);
    line-height: 1.4;
}

.mint-section {
    padding: 120px 0;
    background-color: var(--white);
}

.mint-section-dark {
    background-color: var(--dark);
    color: var(--white);
}

.mint-section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    text-align: center;
    margin-bottom: 80px;
    letter-spacing: -1px;
}

.mint-section-dark .mint-section-title {
    color: var(--primary);
}

.mint-zigzag {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 120px;
}

.mint-zigzag:last-child {
    margin-bottom: 0;
}

.mint-zigzag:nth-child(even) .mint-zigzag-content {
    order: -1;
}

.mint-zigzag-img {
    background-color: var(--light);
    border-radius: 40px;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid var(--dark);
    box-shadow: 15px 15px 0px var(--dark);
    overflow: hidden;
    position: relative;
    padding: 40px;
}

.mint-zigzag-icon {
    width: 200px;
    height: 200px;
    color: var(--primary);
}

.mint-zigzag-content h2 {
    font-size: 3rem;
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.mint-zigzag-content p {
    font-size: 1.25rem;
    margin-bottom: 24px;
    line-height: 1.6;
    color: #444;
}

.mint-section-dark .mint-zigzag-content p {
    color: #ddd;
}

.mint-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.mint-card {
    background-color: var(--white);
    border: 4px solid var(--dark);
    border-radius: 30px;
    padding: 40px;
    box-shadow: 12px 12px 0px var(--dark);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.mint-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: 16px 16px 0px var(--dark);
}

.mint-card-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    border: 3px solid var(--dark);
    box-shadow: 4px 4px 0px var(--dark);
}

.mint-card-icon svg {
    width: 32px;
    height: 32px;
    color: var(--dark);
}

.mint-card h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.mint-card p {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.5;
    margin-bottom: 24px;
    flex-grow: 1;
}

.mint-cta {
    background-color: var(--primary);
    padding: 120px 0;
    text-align: center;
    border-top: 8px solid var(--dark);
}

.mint-cta-inner {
    max-width: 800px;
    margin: 0 auto;
}

.mint-cta h2 {
    font-size: clamp(3rem, 5vw, 4.5rem);
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.mint-cta p {
    font-size: 1.5rem;
    margin-bottom: 48px;
    font-weight: 500;
}

@media (max-width: 992px) {
    .mint-zigzag {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .mint-zigzag:nth-child(even) .mint-zigzag-content {
        order: 0;
    }
    .mint-zigzag-img {
        height: 300px;
    }
}

/* Chat Widget */
.chat-widget {
    position: fixed !important;
    top: auto !important;
    bottom: 24px !important;
    right: 24px !important;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.chat-toggle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: none;
    background-color: var(--primary);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    cursor: pointer;
    overflow: hidden;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.chat-toggle:hover {
    transform: scale(1.05);
}

.chat-toggle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Wiggle Animation */
@keyframes wiggle {
    0%, 7% { transform: rotateZ(0); }
    15% { transform: rotateZ(-15deg); }
    20% { transform: rotateZ(10deg); }
    25% { transform: rotateZ(-10deg); }
    30% { transform: rotateZ(6deg); }
    35% { transform: rotateZ(-4deg); }
    40%, 100% { transform: rotateZ(0); }
}

.chat-toggle.wiggle {
    animation: wiggle 4s ease infinite;
}

.chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    max-width: calc(100vw - 48px);
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    margin-bottom: 16px;
    overflow: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform-origin: bottom right;
}

.chat-window.hidden {
    opacity: 0;
    transform: scale(0.9);
    pointer-events: none;
}

.chat-header {
    background: var(--dark);
    color: var(--white);
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header h3 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--primary);
}

.chat-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
}

.chat-body {
    padding: 20px;
}

.chat-body p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 16px;
}

.chat-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.chat-form input,
.chat-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.95rem;
}

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

.chat-form .btn {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    border-radius: 10px;
}

.chat-status {
    margin-top: 12px;
    font-size: 0.9rem;
    text-align: center;
    font-weight: 500;
}

/* =========================================
   WEBSITE & SEO PAGE SECTIONS
   ========================================= */

.seo-section {
    padding: 100px 0;
    background-color: var(--white);
}

.seo-section-dark {
    background-color: var(--dark);
    color: var(--white);
}

.seo-section-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 32px;
    text-transform: uppercase;
}

.seo-section-dark .seo-section-title {
    color: var(--white);
}

.seo-body {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #444;
    max-width: 680px;
}

.seo-section-dark .seo-body {
    color: #ccc;
}

/* Split Layout */
.seo-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.seo-split-content {
    order: 0;
}

.seo-split-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.seo-split-graphic {
    background-color: var(--light);
    border-radius: 40px;
    height: 400px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid var(--dark);
    box-shadow: 15px 15px 0px var(--dark);
    padding: 40px;
}

.seo-split-graphic svg {
    width: 160px;
    height: 160px;
    color: var(--primary);
}

/* Centered Content */
.seo-centered {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.seo-centered .seo-body {
    margin-left: auto;
    margin-right: auto;
}

/* Pain List */
.seo-pain-list {
    list-style: none;
    padding: 0;
    margin: 32px 0;
}

.seo-pain-list li {
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 16px;
    padding-left: 32px;
    position: relative;
    color: var(--white);
}

.seo-pain-list li::before {
    content: '\2716';
    position: absolute;
    left: 0;
    top: 0;
    color: #ff4444;
    font-size: 1.2rem;
}

/* Check List */
.seo-check-list {
    list-style: none;
    padding: 0;
    margin: 32px 0;
}

.seo-check-list li {
    font-size: 1.15rem;
    line-height: 1.5;
    margin-bottom: 14px;
    padding-left: 32px;
    position: relative;
    color: #444;
}

.seo-section-dark .seo-check-list li {
    color: #ccc;
}

.seo-check-list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary);
    font-weight: 900;
    font-size: 1.3rem;
}

.seo-section-dark .seo-check-list li::before {
    color: var(--primary);
}

.seo-check-list--green li::before {
    color: #22c55e;
}

/* Steps Flow */
.seo-steps {
    max-width: 800px;
    margin: 60px auto 0;
}

.seo-step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    margin-bottom: 40px;
    position: relative;
}

.seo-step::after {
    content: '';
    position: absolute;
    left: 28px;
    top: 64px;
    bottom: -40px;
    width: 2px;
    background: var(--primary);
    opacity: 0.4;
}

.seo-step:last-child::after {
    display: none;
}

.seo-step-num {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--dark);
    font-size: 1.5rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--dark);
    box-shadow: 4px 4px 0px var(--dark);
}

.seo-step-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--white);
}

.seo-step-content p {
    font-size: 1.05rem;
    color: #aaa;
    line-height: 1.5;
}

/* Two Column (Not for Everyone) */
.seo-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
}

.seo-two-col-box {
    border: 4px solid var(--dark);
    border-radius: 30px;
    padding: 40px;
    box-shadow: 12px 12px 0px var(--dark);
}

.seo-two-col-box h3 {
    font-size: 1.6rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

/* X List */
.seo-x-list {
    list-style: none;
    padding: 0;
}

.seo-x-list li {
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 14px;
    padding-left: 32px;
    position: relative;
    color: #888;
}

.seo-x-list li::before {
    content: '\2716';
    position: absolute;
    left: 0;
    top: 0;
    color: #ff4444;
    font-weight: 700;
    font-size: 1.1rem;
}

/* FAQ */
.seo-faq {
    max-width: 800px;
    margin: 60px auto 0;
}

.seo-faq-item {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.seo-faq-item:first-child {
    border-top: 1px solid rgba(255,255,255,0.1);
}

.seo-faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 0;
    font-family: inherit;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    gap: 16px;
}

.seo-faq-question:hover {
    color: var(--primary);
}

.seo-faq-arrow {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.seo-faq-item.open .seo-faq-arrow {
    transform: rotate(180deg);
}

.seo-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.seo-faq-item.open .seo-faq-answer {
    max-height: 300px;
    padding-bottom: 24px;
}

.seo-faq-answer p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #aaa;
}

/* =========================================
   CONTACT PAGE FORM
   ========================================= */

.contact-form-wrap {
    max-width: 700px;
    margin: 60px auto 0;
}

.contact-form {
    background: var(--white);
    border: 4px solid var(--dark);
    border-radius: 30px;
    padding: 48px;
    box-shadow: 15px 15px 0px var(--dark);
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

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

.form-group label {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #ddd;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    background: var(--white);
    transition: border-color 0.2s ease;
}

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

.form-group textarea {
    resize: vertical;
}

.form-disclaimer {
    font-size: 0.85rem;
    color: #888;
    margin-top: 16px;
    text-align: center;
}

@media (max-width: 768px) {
    .contact-form-grid {
        grid-template-columns: 1fr;
    }
    .contact-form {
        padding: 24px;
        box-shadow: 10px 10px 0px var(--dark);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .seo-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .seo-split-content {
        order: 0 !important;
    }
    .seo-split-visual {
        order: -1;
    }
    .seo-split-graphic {
        height: 280px;
    }
    .seo-two-col {
        grid-template-columns: 1fr;
    }
    .seo-step {
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .seo-section {
        padding: 60px 0;
    }
    .seo-split-graphic {
        height: 200px;
        box-shadow: 8px 8px 0px var(--dark);
    }
    .seo-split-graphic svg {
        width: 100px;
        height: 100px;
    }
    .seo-two-col-box {
        padding: 24px;
        box-shadow: 8px 8px 0px var(--dark);
    }
    .seo-faq-question {
        font-size: 1.05rem;
        padding: 20px 0;
    }
}
