/* ==========================================================================
   CSS Variables & Reset
   ========================================================================== */
:root {
    --primary: #1a56db;
    --primary-dark: #1e3a8a;
    --primary-light: #3b82f6;
    --secondary: #0f172a;
    --accent: #f59e0b;
    --accent-hover: #d97706;
    --bg-main: #f8fafc;
    --surface: #ffffff;
    --text-main: #334155;
    --text-dark: #0f172a;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.08);
    --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.1), 0 2px 4px -1px rgba(15, 23, 42, 0.06);
    --shadow-lg: 0 10px 25px -5px rgba(15, 23, 42, 0.15), 0 8px 10px -6px rgba(15, 23, 42, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(15, 23, 42, 0.2), 0 10px 10px -5px rgba(15, 23, 42, 0.1);
    --shadow-blue: 0 10px 25px -5px rgba(26, 86, 219, 0.3);
    --shadow-gold: 0 10px 25px -5px rgba(245, 158, 11, 0.3);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==========================================================================
   Buttons & Badges
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.125rem;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    box-shadow: var(--shadow-blue);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px rgba(26, 86, 219, 0.4);
}

.btn-accent {
    background-color: var(--accent);
    color: var(--secondary);
    box-shadow: var(--shadow-gold);
}

.btn-accent:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px rgba(245, 158, 11, 0.4);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: white;
    transform: translateY(-2px);
}

.btn-outline-primary {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

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

.btn-block {
    width: 100%;
}

.mt-4 {
    margin-top: 1rem;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    padding: 12px 0;
}

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

.logo-area {
    display: flex;
    align-items: center;
    gap: 16px;
}

.brand-logo-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    background: white;
    padding: 2px;
    transition: var(--transition);
}

.brand-logo-img:hover {
    transform: scale(1.08) rotate(5deg);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 2rem;
    color: white;
    line-height: 0.9;
    letter-spacing: -0.5px;
}

.brand-tagline {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--primary-light);
    letter-spacing: 2px;
    margin-top: 2px;
}

.dash {
    color: var(--accent);
}

.brand-sub {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 1px;
}

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

.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    color: #cbd5e1;
    position: relative;
    padding: 6px 0;
}

.nav-link:hover {
    color: white;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--primary-light);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.highlight-link {
    color: var(--accent);
}

.highlight-link:hover {
    color: var(--accent-hover);
}

.highlight-link::after {
    background: var(--accent);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.aus-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.4);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    color: var(--accent);
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.aus-badge i {
    font-size: 1.25rem;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 120px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.75) 50%, rgba(15, 23, 42, 0.4) 100%),
        radial-gradient(circle at top right, rgba(59, 130, 246, 0.2), transparent 50%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 850px;
    color: white;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(59, 130, 246, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.5);
    color: #93c5fd;
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.highlight-text {
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(59, 130, 246, 0.4);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: #e2e8f0;
    margin-bottom: 40px;
    letter-spacing: 2px;
    font-family: var(--font-heading);
    max-width: 750px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.wave-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 3;
}

/* ==========================================================================
   Floating Contact Bar
   ========================================================================== */
.contact-bar-wrapper {
    position: relative;
    z-index: 10;
    margin-top: -60px;
}

.contact-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 24px 28px;
    border-right: 1px solid var(--border-color);
    transition: var(--transition);
}

.contact-item:last-child {
    border-right: none;
}

.contact-item:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-4px);
}

.contact-icon {
    width: 54px;
    height: 54px;
    background: rgba(26, 86, 219, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-item:hover .contact-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.contact-info {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.contact-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 1px;
    margin-bottom: 4px;
    transition: var(--transition);
}

.contact-item:hover .contact-label {
    color: #93c5fd;
}

.contact-value {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: var(--transition);
}

.contact-item:hover .contact-value {
    color: white;
}

.highlight-num {
    color: var(--primary);
    font-size: 1.15rem;
    font-family: var(--font-heading);
}

.phone-pulse {
    animation: pulsePhone 2s infinite;
}

@keyframes pulsePhone {
    0% {
        box-shadow: 0 0 0 0 rgba(26, 86, 219, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(26, 86, 219, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(26, 86, 219, 0);
    }
}

/* ==========================================================================
   Main Content Area
   ========================================================================== */
.main-content {
    padding: 100px 0;
}

.section-grid {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 60px;
    align-items: start;
}

/* Process Section */
.process-section {
    background: white;
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.section-header {
    margin-bottom: 40px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.title-underline {
    width: 80px;
    height: 5px;
    background: var(--primary);
    border-radius: var(--radius-full);
    margin: 12px 0 16px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 30px;
    bottom: 30px;
    left: 28px;
    width: 2px;
    background: var(--border-color);
    z-index: 1;
}

.process-card {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    gap: 24px;
    background: var(--bg-main);
    padding: 28px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.process-card:hover {
    background: white;
    transform: translateX(8px);
    box-shadow: var(--shadow-blue);
    border-color: var(--primary-light);
}

.step-num {
    position: absolute;
    top: -12px;
    right: 24px;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    color: rgba(26, 86, 219, 0.08);
    line-height: 1;
    transition: var(--transition);
}

.process-card:hover .step-num {
    color: rgba(26, 86, 219, 0.2);
}

.step-icon {
    width: 58px;
    height: 58px;
    background: white;
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: var(--shadow-md);
    flex-shrink: 0;
    border: 2px solid var(--primary-light);
    transition: var(--transition);
}

.process-card:hover .step-icon {
    background: var(--primary);
    color: white;
    transform: rotate(10deg);
}

.step-details {
    flex-grow: 1;
}

.step-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.step-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Showcase & Offer Wrapper */
.showcase-offer-wrapper {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

/* Showcase Section */
.pride-banner {
    text-align: center;
    margin-bottom: 28px;
}

.script-title {
    font-family: 'Outfit', sans-serif;
    font-size: 3.25rem;
    font-weight: 900;
    font-style: italic;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.pride-subtitle {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-muted);
    letter-spacing: 2px;
}

.comparison-container {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--secondary);
    border: 8px solid white;
    box-shadow: var(--shadow-xl);
}

.slider-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 11;
    overflow: hidden;
    user-select: none;
}

.image-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.before-box {
    width: 50%;
    z-index: 2;
    border-right: 3px solid white;
}

.after-box {
    width: 100%;
    z-index: 1;
}

.badge-label {
    position: absolute;
    top: 24px;
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1rem;
    letter-spacing: 1px;
    box-shadow: var(--shadow-lg);
    z-index: 5;
}

.before-label {
    left: 24px;
    background: rgba(15, 23, 42, 0.85);
    color: white;
    backdrop-filter: blur(8px);
}

.after-label {
    right: 24px;
    background: var(--primary);
    color: white;
}

.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 100%;
    z-index: 10;
    pointer-events: none;
}

.slider-btn {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    background: white;
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    pointer-events: auto;
    cursor: grab;
    transition: transform 0.2s;
}

.slider-btn:active {
    cursor: grabbing;
    transform: translate(-50%, -50%) scale(0.9);
}

.slider-hint {
    background: var(--secondary);
    color: #94a3b8;
    text-align: center;
    padding: 12px;
    font-size: 0.9rem;
    font-weight: 500;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Offer & CTA Section */
.offer-cta-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.offer-card {
    position: relative;
    background: linear-gradient(135deg, #1e3a8a, #0f172a);
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    color: white;
    text-align: center;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 255, 255, 0.15);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.offer-ribbon {
    position: absolute;
    top: 24px;
    left: -32px;
    background: var(--accent);
    color: var(--secondary);
    padding: 6px 40px;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 0.75rem;
    letter-spacing: 2px;
    transform: rotate(-45deg);
    box-shadow: var(--shadow-md);
}

.offer-icon {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 16px;
    filter: drop-shadow(0 4px 10px rgba(245, 158, 11, 0.4));
}

.offer-headline {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
}

.discount-badge {
    background: var(--accent);
    color: var(--secondary);
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    padding: 8px 24px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-gold);
    margin-bottom: 16px;
}

.offer-subtext {
    font-size: 0.95rem;
    font-weight: 600;
    color: #e2e8f0;
    line-height: 1.4;
    margin-bottom: 24px;
}

.offer-divider {
    width: 60px;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    margin-bottom: 20px;
}

.offer-action-text {
    color: #93c5fd;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 1px;
}

.action-banner {
    background: white;
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.action-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-muted);
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.action-huge {
    font-family: var(--font-heading);
    font-size: 3.25rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 32px;
    letter-spacing: -1px;
    text-shadow: 0 4px 15px rgba(26, 86, 219, 0.15);
}

.phone-btn-huge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    width: 100%;
    padding: 20px 24px;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-blue);
    transition: var(--transition);
}

.phone-btn-huge:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 35px -5px rgba(26, 86, 219, 0.5);
}

.phone-icon-circle {
    width: 48px;
    height: 48px;
    background: white;
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.phone-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 1px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background: var(--secondary);
    color: white;
    position: relative;
}

.features-bar {
    background: #1e293b;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 32px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    align-items: center;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1.3;
    letter-spacing: 0.5px;
    color: #e2e8f0;
}

.guarantee-badge {
    justify-content: flex-end;
}

.satisfaction-badge {
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: var(--secondary);
    padding: 16px 24px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.1rem;
    line-height: 1.2;
    box-shadow: var(--shadow-gold);
    transform: scale(1.05);
}

.satisfaction-badge i {
    font-size: 2.25rem;
}

.footer-bottom {
    padding: 40px 0;
    font-size: 0.9rem;
    color: #94a3b8;
}

.footer-bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a:hover {
    color: white;
}

/* ==========================================================================
   Modal
   ========================================================================== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    padding: 24px;
}

.modal.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.modal-content {
    position: relative;
    z-index: 2001;
    background: white;
    width: 100%;
    max-width: 650px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    transform: translateY(20px);
    transition: var(--transition);
}

.modal.active .modal-content {
    transform: translateY(0);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 36px;
    background: var(--secondary);
    color: white;
}

.modal-header h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
}

.modal-close {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--accent);
    color: var(--secondary);
    transform: rotate(90deg);
}

.modal-body {
    padding: 36px;
}

.modal-desc {
    color: var(--text-muted);
    margin-bottom: 28px;
    font-size: 1.05rem;
}

.quote-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.full-width {
    grid-column: span 2;
}

.form-group label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-main);
    background: var(--bg-main);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(26, 86, 219, 0.15);
    background: white;
}

.success-alert {
    background: #dcfce7;
    border: 1px solid #22c55e;
    color: #15803d;
    padding: 20px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
}

.hidden {
    display: none;
}

/* ==========================================================================
   Responsive Queries
   ========================================================================== */
@media (max-width: 1280px) {
    .section-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .guarantee-badge {
        grid-column: span 3;
        justify-content: center;
        margin-top: 16px;
    }
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.25rem;
    }
}

@media (max-width: 768px) {
    .logo-text {
        display: none;
    }

    .nav-menu {
        display: none;
    }

    .aus-badge {
        display: none;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.15rem;
    }

    .process-section {
        padding: 32px 24px;
    }

    .offer-cta-section {
        grid-template-columns: 1fr;
    }

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

    .guarantee-badge {
        grid-column: span 1;
    }

    .quote-form {
        grid-template-columns: 1fr;
    }

    .full-width {
        grid-column: span 1;
    }
}

@media (max-width: 640px) {
    .contact-bar {
        grid-template-columns: 1fr;
    }

    .contact-item {
        border-right: none !important;
        border-bottom: 1px solid var(--border-color);
    }

    .contact-item:last-child {
        border-bottom: none;
    }

    .script-title {
        font-size: 2.25rem;
    }

    .modal-body {
        padding: 24px;
    }

    .modal-header {
        padding: 20px 24px;
    }
}