/* ==========================================================================
   IVAN CONSTRUCTIONS NO - LUXURY NORDIC DESIGN SYSTEM
   Oslo, Norway | Painting & Tiling Experts
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
    /* Color Palette */
    --clr-navy-900: #080D1D;
    --clr-navy-800: #0B132A;
    --clr-navy-700: #121D3B;
    --clr-navy-600: #1B2A52;
    
    --clr-teal-500: #00A896;
    --clr-teal-400: #02C39A;
    --clr-teal-glow: rgba(0, 168, 150, 0.25);

    --clr-gold-500: #E0A96D;
    --clr-gold-600: #C58A48;
    --clr-gold-glow: rgba(224, 169, 109, 0.25);

    --clr-gray-100: #F8FAFC;
    --clr-gray-200: #E2E8F0;
    --clr-gray-300: #CBD5E1;
    --clr-gray-600: #64748B;
    --clr-gray-700: #334155;
    --clr-gray-900: #0F172A;
    --clr-white: #FFFFFF;

    /* Typography */
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Shadows & Glass */
    --glass-bg: rgba(11, 19, 42, 0.75);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-card: rgba(255, 255, 255, 0.03);
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 10px 30px rgba(8, 13, 29, 0.12);
    --shadow-lg: 0 20px 40px rgba(8, 13, 29, 0.25);
    --shadow-gold: 0 10px 30px rgba(224, 169, 109, 0.2);

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    /* Radii */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --radius-full: 9999px;
}

/* Reset & Base Setup */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--clr-gray-100);
    color: var(--clr-gray-900);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

ul, ol {
    list-style: none;
}

/* Layout Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--clr-navy-900);
}

.heading-xl {
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: -0.02em;
}

.heading-lg {
    font-size: clamp(2rem, 3.5vw, 3rem);
    letter-spacing: -0.01em;
}

.heading-md {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
}

.heading-sm {
    font-size: 1.25rem;
}

.text-gold {
    color: var(--clr-gold-500);
}

.text-teal {
    color: var(--clr-teal-500);
}

.text-gradient-gold {
    background: linear-gradient(135deg, var(--clr-gold-500) 0%, #FFF5EA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-teal {
    background: linear-gradient(135deg, var(--clr-teal-400) 0%, var(--clr-teal-500) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Buttons System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.9rem 2rem;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition-base);
    text-align: center;
    white-space: nowrap;
}

.btn-gold {
    background: linear-gradient(135deg, var(--clr-gold-500) 0%, var(--clr-gold-600) 100%);
    color: var(--clr-navy-900);
    box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(224, 169, 109, 0.4);
}

.btn-teal {
    background: linear-gradient(135deg, var(--clr-teal-400) 0%, var(--clr-teal-500) 100%);
    color: var(--clr-white);
    box-shadow: 0 10px 30px var(--clr-teal-glow);
}

.btn-teal:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 168, 150, 0.4);
}

.btn-outline-white {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--clr-white);
    backdrop-filter: blur(10px);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--clr-white);
    transform: translateY(-3px);
}

.btn-outline-navy {
    background: transparent;
    border-color: var(--clr-navy-800);
    color: var(--clr-navy-800);
}

.btn-outline-navy:hover {
    background: var(--clr-navy-800);
    color: var(--clr-white);
    transform: translateY(-3px);
}

.btn-sm {
    padding: 0.6rem 1.25rem;
    font-size: 0.875rem;
}

/* Header & Topbar */
.topbar {
    background-color: var(--clr-navy-900);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-info {
    display: flex;
    gap: 1.5rem;
}

.topbar-info-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.topbar-badge {
    background: rgba(0, 168, 150, 0.2);
    color: var(--clr-teal-400);
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.75rem;
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(11, 19, 42, 0.95);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition-base);
}

.navbar-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.brand-logo img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

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

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--clr-white);
    letter-spacing: 0.03em;
    line-height: 1.1;
}

.brand-tagline {
    font-size: 0.7rem;
    color: var(--clr-gold-500);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--clr-gold-500);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--clr-gold-500);
    transition: var(--transition-base);
}

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

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

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 280px;
    background: var(--clr-navy-800);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 0.75rem;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-fast);
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--clr-gold-500);
    transform: translateX(4px);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--clr-white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Mobile Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 380px;
    height: 100vh;
    background: var(--clr-navy-900);
    z-index: 2000;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-base);
    box-shadow: var(--shadow-lg);
}

.mobile-drawer.open {
    right: 0;
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
}

.drawer-overlay.open {
    opacity: 1;
    visibility: visible;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.drawer-close {
    background: none;
    border: none;
    color: var(--clr-white);
    font-size: 1.5rem;
    cursor: pointer;
}

.drawer-links {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.drawer-link {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--clr-white);
    font-weight: 600;
}

.drawer-link.active, .drawer-link:hover {
    color: var(--clr-gold-500);
}

.drawer-sublinks {
    margin-left: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.75rem;
}

.drawer-sublink {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Hero Section */
.hero {
    position: relative;
    background-color: var(--clr-navy-900);
    color: var(--clr-white);
    padding: 6rem 0 8rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
    filter: brightness(0.8);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(11, 19, 42, 0.5) 0%, rgba(8, 13, 29, 0.95) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
    text-align: center;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(224, 169, 109, 0.3);
    padding: 0.4rem 1.25rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    color: var(--clr-gold-500);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.hero-title {
    color: var(--clr-white);
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    font-weight: 400;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Stats Counter Section */
.stats-strip {
    background-color: var(--clr-navy-800);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 3rem 0;
    margin-top: -3rem;
    position: relative;
    z-index: 10;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-card {
    padding: 1rem;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--clr-gold-500);
    line-height: 1;
    margin-bottom: 0.4rem;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Section Header */
.section {
    padding: 6rem 0;
}

.section-dark {
    background-color: var(--clr-navy-900);
    color: var(--clr-white);
}

.section-dark h2 {
    color: var(--clr-white);
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 4rem;
}

.section-tag {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--clr-teal-500);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
    display: block;
}

.section-title {
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--clr-gray-600);
}

.section-dark .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

/* Services Cards Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--clr-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--clr-gray-200);
    transition: var(--transition-base);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--clr-teal-500);
}

.service-card-image {
    height: 220px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.service-card:hover .service-card-image img {
    transform: scale(1.08);
}

.service-card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(11, 19, 42, 0.85);
    color: var(--clr-gold-500);
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.service-card-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-card-title {
    margin-bottom: 0.75rem;
}

.service-card-desc {
    color: var(--clr-gray-600);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--clr-teal-500);
    font-size: 0.95rem;
}

.service-card-link svg {
    transition: var(--transition-fast);
}

.service-card-link:hover svg {
    transform: translateX(5px);
}

/* Features / Why Choose Us Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-md);
    transition: var(--transition-base);
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--clr-gold-500);
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(224, 169, 109, 0.15);
    color: var(--clr-gold-500);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.feature-title {
    color: var(--clr-white);
    margin-bottom: 0.75rem;
}

.feature-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

/* Gallery Showcase */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 280px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8, 13, 29, 0.9) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: var(--transition-base);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-title {
    color: var(--clr-white);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.gallery-category {
    color: var(--clr-gold-500);
    font-size: 0.85rem;
    font-weight: 600;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--clr-white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--clr-gray-200);
    display: flex;
    flex-direction: flex-start;
    flex-direction: column;
    justify-content: space-between;
}

.stars {
    color: var(--clr-gold-500);
    margin-bottom: 1rem;
    display: flex;
    gap: 0.2rem;
}

.testimonial-quote {
    font-size: 1rem;
    color: var(--clr-gray-700);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background: var(--clr-navy-800);
    color: var(--clr-gold-500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: var(--font-heading);
}

.author-name {
    font-weight: 700;
    font-size: 0.95rem;

    color: var(--clr-navy-900);
}

.author-location {
    font-size: 0.8rem;
    color: var(--clr-gray-600);
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--clr-white);
    border: 1px solid var(--clr-gray-200);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-fast);
}

.faq-item.active {
    border-color: var(--clr-teal-500);
    box-shadow: var(--shadow-sm);
}

.faq-header {
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--clr-navy-900);
}

.faq-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    color: var(--clr-teal-500);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 1.5rem;
    color: var(--clr-gray-600);
    font-size: 0.95rem;
    line-height: 1.7;
}

.faq-item.active .faq-body {
    max-height: 400px;
    padding-bottom: 1.5rem;
}

/* Contact Cards & Form */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    background: var(--clr-white);
    padding: 2rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--clr-gray-200);
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    background: rgba(0, 168, 150, 0.1);
    color: var(--clr-teal-500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-details h4 {
    margin-bottom: 0.35rem;
}

.contact-details p {
    color: var(--clr-gray-600);
    font-size: 0.95rem;
}

.contact-form-card {
    background: var(--clr-white);
    padding: 3rem 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--clr-gray-200);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: var(--clr-navy-900);
}

.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 0.85rem 1.25rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--clr-gray-300);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-fast);
    background-color: var(--clr-gray-100);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--clr-teal-500);
    background-color: var(--clr-white);
    box-shadow: 0 0 0 4px var(--clr-teal-glow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

/* Call to Action Section */
.cta-banner {
    background: linear-gradient(135deg, var(--clr-navy-900) 0%, var(--clr-navy-700) 100%);
    border-radius: var(--radius-lg);
    padding: 4rem 3rem;
    text-align: center;
    color: var(--clr-white);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--clr-teal-glow) 0%, transparent 70%);
    pointer-events: none;
}

.cta-title {
    color: var(--clr-white);
    margin-bottom: 1rem;
}

.cta-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

/* Footer */
.footer {
    background-color: var(--clr-navy-900);
    color: rgba(255, 255, 255, 0.7);
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-brand p {
    margin-top: 1rem;
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-col-title {
    color: var(--clr-white);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-link:hover {
    color: var(--clr-gold-500);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

/* Privacy Policy Styles */
.policy-card {
    background: var(--clr-white);
    padding: 3.5rem 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--clr-gray-200);
}

.policy-header {
    border-bottom: 2px solid var(--clr-gray-200);
    padding-bottom: 2rem;
    margin-bottom: 2.5rem;
}

.policy-meta {
    font-weight: 600;
    color: var(--clr-teal-500);
    margin-top: 0.5rem;
}

.policy-section {
    margin-bottom: 2.5rem;
}

.policy-section h3 {
    margin-bottom: 1rem;
    color: var(--clr-navy-900);
}

.policy-section p {
    color: var(--clr-gray-700);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.policy-list {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.policy-list li {
    list-style-type: disc;
    color: var(--clr-gray-700);
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

/* Toast Notification */
.toast-modal {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--clr-navy-900);
    color: var(--clr-white);
    padding: 1.25rem 2rem;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--clr-teal-500);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 3000;
    transform: translateY(100px);
    opacity: 0;
    transition: var(--transition-base);
}

.toast-modal.show {
    transform: translateY(0);
    opacity: 1;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
    .nav-links {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

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

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

@media (max-width: 640px) {
    .topbar {
        display: none;
    }

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

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

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .cta-banner {
        padding: 3rem 1.5rem;
    }
}
