/* 
 * WADHO & ASSOCIATES - Core Design System & Stylesheet
 * Premium, Executive, Responsive CSS System
 * Theme: Deep Royal Navy, Slate Blue, and Warm Champagne Gold
 */

:root {
    /* Color Palette */
    --primary: #0A2540;        /* Deep Premium Navy */
    --primary-light: #1A3E62;  /* Slate/Royal Blue */
    --secondary: #D4AF37;      /* Burnished Champagne Gold */
    --secondary-dark: #B3922E; /* Gold Darker shade for hover */
    --accent: #E5C158;         /* Bright Gold */
    --dark-bg: #051020;        /* Modern Deep Navy Dark Mode Background */
    --dark-card: #0A1C33;      /* Semi-transparent Dark Card */
    --light-bg: #FAFBFD;       /* Soft Alabaster Light Background */
    --light-card: #FFFFFF;     /* White Card */
    --text-dark: #1E293B;      /* Charcoal Text */
    --text-light: #F8FAFC;     /* Off-white Text */
    --text-muted: #64748B;     /* Slate Muted Text */
    --border-color: #E2E8F0;   /* Light Slate Border */
    --border-dark: #1E3A5F;    /* Deep Navy Border */
    --success: #10B981;        /* Emerald Green */
    --warning: #F59E0B;        /* Golden Orange */
    --danger: #EF4444;         /* Coral Red */

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --font-ui: 'Outfit', sans-serif;

    /* Spacing & Transitions */
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 15px -3px rgba(10,37,64,0.08);
    --shadow-lg: 0 20px 25px -5px rgba(10,37,64,0.12);
    --shadow-gold: 0 8px 24px rgba(212, 175, 55, 0.15);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
}

/* Base Resets */
*, *::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(--light-bg);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-ui);
    font-weight: 700;
    color: var(--primary);
}

.heading-serif {
    font-family: var(--font-heading);
    font-weight: 600;
}

p {
    font-family: var(--font-body);
    color: var(--text-muted);
}

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

/* Layout Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

img, iframe {
    max-width: 100%;
    height: auto;
}

.section-padding {
    padding: 100px 0;
}

.text-center { text-align: center; }
.flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.grid { display: grid; }

/* Grid columns */
.grid-2 { grid-template-columns: repeat(2, 1fr); gap: 40px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-4 { grid-template-columns: repeat(4, 1fr); gap: 24px; }

@media (max-width: 992px) {
    .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-2 { grid-template-columns: 1fr; }
}

@media (max-width: 576px) {
    .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
    .section-padding { padding: 60px 0; }
}

/* Premium Header / Navbar */
.top-bar {
    background-color: var(--primary);
    color: var(--text-light);
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 500;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.top-info {
    display: flex;
    gap: 20px;
}

.top-info a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.85);
}

.top-info a:hover {
    color: var(--secondary);
}

.top-socials {
    display: flex;
    gap: 15px;
}

.top-socials a {
    color: rgba(255, 255, 255, 0.85);
}

.top-socials a:hover {
    color: var(--secondary);
    transform: translateY(-2px);
}

header.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(10, 37, 64, 0.08);
    transition: var(--transition);
}

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

.logo-container a {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Custom CSS SVG-like logo style */
.logo-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 48px;
    height: 48px;
}

.logo-text-box h2 {
    font-family: var(--font-ui);
    font-size: 20px;
    letter-spacing: 1px;
    color: var(--primary);
    text-transform: uppercase;
    line-height: 1.1;
}

.logo-text-box span {
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 600;
    display: block;
}

nav.main-nav {
    display: block;
}

nav.main-nav ul.nav-list {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
}

nav.main-nav ul.nav-list > li {
    position: relative;
}

nav.main-nav ul.nav-list > li > a {
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    display: block;
    position: relative;
}

nav.main-nav ul.nav-list > li > a:hover,
nav.main-nav ul.nav-list > li.active > a {
    color: var(--secondary);
    background: rgba(13, 37, 64, 0.03);
}

/* Dropdown Menu styling */
nav.main-nav ul.nav-list li.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #FFFFFF;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition);
    padding: 10px 0;
    list-style: none;
    z-index: 1010;
}

.dropdown-menu li a {
    padding: 10px 20px;
    display: block;
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 500;
    color: var(--primary);
}

.dropdown-menu li a:hover {
    background: var(--light-bg);
    color: var(--secondary);
    padding-left: 25px;
}

/* Call to Action Button in Header */
.header-cta {
    background: var(--primary);
    color: var(--text-light) !important;
    border: 2px solid var(--primary);
    border-radius: 50px !important;
    padding: 10px 22px !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(10, 37, 64, 0.15);
}

.header-cta:hover {
    background: var(--secondary) !important;
    border-color: var(--secondary) !important;
    color: var(--primary) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.25);
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary);
    cursor: pointer;
    padding: 5px;
}

@media (max-width: 992px) {
    .nav-wrapper {
        flex-wrap: wrap;
        gap: 10px;
    }
    .top-bar-content {
        flex-wrap: wrap;
        gap: 10px;
    }
    .top-info,
    .top-socials {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
    }
    .mobile-nav-toggle {
        display: block;
        z-index: 1001;
    }
    /* Mobile Side-Panel Navigation */
    nav.main-nav {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 75vw !important;
        max-width: 320px !important;
        height: 100vh !important;
        background: #FFFFFF !important;
        color: var(--primary) !important;
        box-shadow: 4px 0 20px rgba(0,0,0,0.15) !important;
        z-index: 999 !important;
        overflow-y: auto !important;
        transform: translateX(-100%) !important;
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
        margin: 0 !important;
        padding: 0 !important;
        border: none !important;
    }
    
    nav.main-nav.active {
        transform: translateX(0) !important;
    }
    
    nav.main-nav,
    nav.main-nav ul.nav-list,
    nav.main-nav ul.nav-list > li,
    nav.main-nav ul.nav-list > li > a,
    nav.main-nav .dropdown-menu {
        background: #FFFFFF !important;
        color: var(--primary) !important;
    }
    
    nav.main-nav ul.nav-list > li > a {
        color: var(--primary) !important;
    }
    
    .dropdown-menu li a {
        color: var(--primary) !important;
    }
    
    /* Semi-transparent dark overlay behind menu */
    nav.main-nav.active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.5);
        z-index: -1;
        animation: fadeIn 0.35s ease;
    }
    
    @keyframes fadeIn {
        from { background: rgba(0,0,0,0); }
        to { background: rgba(0,0,0,0.5); }
    }
    nav.main-nav ul.nav-list {
        flex-direction: column;
        align-items: stretch;
        padding: 20px 0;
        gap: 0;
        margin: 0;
    }
    nav.main-nav ul.nav-list > li > a {
        padding: 14px 20px;
        font-size: 15px;
        font-weight: 600;
        border-radius: 0;
        color: var(--primary) !important;
        background: transparent !important;
    }
    nav.main-nav ul.nav-list > li > a:hover,
    nav.main-nav ul.nav-list > li.active > a {
        background: rgba(10, 37, 64, 0.05) !important;
        color: var(--primary) !important;
    }
    .dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        padding-left: 40px;
        background: #F8FAFF;
        margin: 0;
    }
    nav.main-nav ul.nav-list li.dropdown.open > .dropdown-menu {
        display: block;
    }
    .dropdown-menu li a {
        font-size: 13px;
        padding: 10px 0;
        color: var(--primary);
    }
}

@media (max-width: 768px) {
    .top-info,
    .top-socials {
        justify-content: center;
    }
    .btn {
        padding: 10px 22px;
        font-size: 13px;
    }
    .hero-actions .btn {
        min-width: 150px;
    }
    .hero-actions {
        gap: 14px;
        justify-content: center;
    }
    .btn.btn-secondary,
    .btn.btn-gold,
    .btn.btn-primary {
        min-width: auto;
    }
}


/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-ui);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 16px 36px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--primary);
    color: var(--text-light);
    box-shadow: 0 8px 20px rgba(10, 37, 64, 0.15);
}

.btn-primary:hover {
    background: var(--secondary);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

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

.btn-gold:hover {
    background: var(--primary);
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* Premium Hero Section */
.hero {
    position: relative;
    background: linear-gradient(135deg, rgba(10,28,51,0.65) 0%, rgba(3,10,27,0.65) 100%), url('../images/hero.webp');
    color: var(--text-light);
    overflow: hidden;
    padding: 140px 0 100px 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(212, 175, 55, 0.06) 1.5px, transparent 1.5px);
    background-size: 24px 24px;
    opacity: 0.7;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.hero-subtitle {
    font-family: var(--font-ui);
    color: var(--text-light);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 3px;
    font-size: 13px;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.hero-subtitle::after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background: rgba(255,255,255,0.4);
}

.hero-title {
    font-size: 56px;
    line-height: 1.05;
    margin-bottom: 18px;
    color: var(--text-light);
    text-shadow: 0 10px 30px rgba(2,6,23,0.6);
    animation: heroFade 0.9s ease both;
}

.hero-brand {
    display: block;
    font-weight: 700;
    color: var(--secondary);
    font-size: 36px;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.hero-title-em {
    display: block;
    color: var(--text-light);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.02em;
}

.hero-title-sub {
    display: block;
    font-size: 20px;
    color: var(--text-light);
    margin-top: 8px;
    font-weight: 500;
}

@keyframes heroFade {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-actions .btn.btn-gold {
    background: linear-gradient(90deg, var(--secondary) 0%, #cfae46 100%);
    color: var(--primary);
    box-shadow: var(--shadow-gold);
    padding: 14px 30px;
}

.hero-actions .btn.btn-secondary {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.18);
    color: #FFFFFF;
    padding: 14px 30px;
}

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


.hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 40px;
    max-width: 550px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}

.hero-actions .btn {
    min-width: 180px;
}

/* Glass Card Search Mockup in Hero */
.hero-search-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: float 6s ease-in-out infinite;
}

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

.search-card-header {
    margin-bottom: 24px;
}

.search-card-header h3 {
    color: var(--text-light);
    font-family: var(--font-ui);
    font-size: 22px;
    margin-bottom: 6px;
}

.search-card-header p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

.search-input-group {
    position: relative;
    margin-bottom: 20px;
}

.search-input-group input {
    width: 100%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    padding: 16px 28px;
    color: #FFFFFF;
    font-family: var(--font-body);
    font-size: 14px;
    transition: var(--transition);
}

.search-input-group input:focus {
    outline: none;
    border-color: var(--secondary);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.search-card-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 24px;
}

.search-feature-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    padding: 12px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.search-feature-item i {
    color: var(--secondary);
    font-size: 18px;
    margin-bottom: 6px;
    display: block;
}

.search-feature-item span {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    font-family: var(--font-ui);
    font-weight: 500;
}

@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-description {
        margin: 0 auto 40px auto;
    }
    .hero-title {
        font-size: 40px;
    }
    .hero-contact-links {
        justify-content: center;
    }
    .hero-search-card {
        padding: 32px;
    }
    .search-card-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .page-banner {
        padding: 60px 0;
    }
    .page-banner h1 {
        font-size: 32px;
    }
    .page-banner p {
        font-size: 14px;
        max-width: 100%;
    }
    .hero-title {
        font-size: 32px;
    }
    .hero-description {
        font-size: 16px;
    }
    .cta-banner {
        padding: 32px 20px;
    }
    .cta-banner-content {
        gap: 20px;
    }
    .about-hero-box {
        gap: 30px;
    }
    .form-control {
        padding: 14px 16px;
    }
    .wizard-footer {
        flex-direction: column;
        gap: 12px;
    }
    .fixed-side-contact,
    .sticky-whatsapp {
        bottom: 12px;
        right: 12px;
    }
    section.container {
        padding: 0 12px;
    }
    .page-banner {
        text-align: left;
    }
}

.hero-contact-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.hero-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    padding: 12px 18px;
    font-size: 14px;
    transition: var(--transition);
}

.hero-contact-link:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.28);
}

.sticky-whatsapp {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9999;
}

.sticky-whatsapp a {
    display: inline-flex;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 18px 35px rgba(37, 211, 102, 0.25);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sticky-whatsapp a:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 40px rgba(37, 211, 102, 0.35);
}

.fixed-side-contact {
    position: fixed;
    left: 20px;
    top: 45%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.fixed-side-contact a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 999px;
    background: rgba(10, 37, 64, 0.92);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-weight: 600;
    font-size: 13px;
    transition: transform 0.2s ease, background 0.2s ease;
}

.fixed-side-contact a:hover {
    transform: translateX(4px);
    background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 992px) {
    .fixed-side-contact {
        display: none;
    }
    .sticky-whatsapp {
        display: block;
        right: 14px;
        bottom: 14px;
    }
    .sticky-whatsapp a {
        width: 52px;
        height: 52px;
        font-size: 22px;
    }
}

/* Page Banner with Photo */
.page-banner {
    position: relative;
    background-image: url('../images/hero.webp');
    background-size: cover;
    background-position: center center;
    color: var(--text-light);
    padding: 100px 0;
    display: flex;
    align-items: center;
}
.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,37,64,0.45) 0%, rgba(10,37,64,0.6) 100%);
    z-index: 1;
}
.page-banner .container { position: relative; z-index: 2; }
.page-banner h1 { color: var(--text-light); font-size: 36px; }
.page-banner p  { color: rgba(255,255,255,0.9); margin-top: 6px; }

@media (max-width: 768px) {
    .page-banner { padding: 60px 0; }
    .page-banner h1 { font-size: 26px; }
}

/* Services Sections on Home */
.section-title-box {
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.subtitle-badge {
    display: inline-block;
    background: rgba(13, 37, 64, 0.05);
    color: var(--primary-light);
    font-family: var(--font-ui);
    font-weight: 700;
    font-size: 12px;
    padding: 6px 16px;
    border-radius: 50px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 40px;
    line-height: 1.25;
    color: var(--primary);
}

.section-title span {
    color: var(--secondary);
}

/* Service Premium Cards */
.service-card {
    background: var(--light-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(10, 37, 64, 0.05);
}

.service-card:hover::before {
    transform: scaleX(1);
    background: var(--secondary);
}

.service-icon-box {
    width: 64px;
    height: 64px;
    background: rgba(13, 37, 64, 0.04);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    font-size: 28px;
    margin-bottom: 24px;
    transition: var(--transition);
}

.service-card:hover .service-icon-box {
    background: var(--primary);
    color: var(--secondary);
    transform: rotateY(360deg);
}

.service-card h3 {
    font-family: var(--font-ui);
    font-size: 20px;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 14px;
    margin-bottom: 24px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-ui);
    font-weight: 700;
    font-size: 13px;
    color: var(--primary-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-link i {
    transition: var(--transition);
}

.service-card:hover .service-link {
    color: var(--secondary-dark);
}

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

/* Timelines / Process Sections */
.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: var(--border-color);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 0 40px;
    margin-bottom: 40px;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-badge {
    position: absolute;
    top: 0;
    width: 40px;
    height: 40px;
    background: var(--primary);
    border: 3px solid #FFFFFF;
    border-radius: 50%;
    color: var(--secondary);
    font-family: var(--font-ui);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.timeline-item:nth-child(odd) .timeline-badge {
    right: -20px;
}

.timeline-item:nth-child(even) .timeline-badge {
    left: -20px;
}

.timeline-card {
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.timeline-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--secondary);
}

.timeline-card h4 {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .timeline::before {
        left: 20px;
    }
    .timeline-item {
        width: 100%;
        left: 0 !important;
        padding-left: 50px;
        padding-right: 0;
        text-align: left !important;
    }
    .timeline-item:nth-child(odd) .timeline-badge,
    .timeline-item:nth-child(even) .timeline-badge {
        left: 0;
    }
}

/* Call-to-action Sections */
.cta-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--text-light);
    border-radius: var(--radius-lg);
    padding: 60px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.cta-banner-overlay {
    position: absolute;
    right: 0;
    bottom: 0;
    opacity: 0.05;
    font-size: 300px;
    line-height: 1;
    pointer-events: none;
}

.cta-banner-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.cta-text h2 {
    color: var(--text-light);
    font-family: var(--font-heading);
    font-size: 36px;
    margin-bottom: 12px;
}

.cta-text p {
    color: rgba(255,255,255,0.8);
    font-size: 16px;
}

@media (max-width: 768px) {
    .cta-banner-content {
        flex-direction: column;
        text-align: center;
    }
    .cta-banner {
        padding: 40px 24px;
    }
}

/* Footer Section */
footer.site-footer {
    background: #061122;
    color: var(--text-light);
    padding-top: 80px;
    border-top: 4px solid var(--secondary);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.65);
    margin: 20px 0;
    font-size: 14px;
}

.footer-social-icons {
    display: flex;
    gap: 12px;
}

.footer-social-icons a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social-icons a:hover {
    background: var(--secondary);
    color: var(--primary);
    transform: translateY(-3px);
}

.footer-widget h4 {
    color: var(--text-light);
    font-family: var(--font-ui);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--secondary);
}

.footer-links-list {
    list-style: none;
}

.footer-links-list li {
    margin-bottom: 12px;
}

.footer-links-list li a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links-list li a:hover {
    color: var(--secondary);
    transform: translateX(4px);
}

.footer-contact-info p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    margin-bottom: 16px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.footer-contact-info p i {
    color: var(--secondary);
    margin-top: 4px;
}

.footer-bottom {
    background: #030A14;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
}

@media (max-width: 992px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Premium Registration Form Step Wizard */
.wizard-container {
    background: #FFFFFF;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    overflow: hidden;
    margin: 40px 0;
}

.wizard-header {
    background: var(--primary);
    color: var(--text-light);
    padding: 30px 40px;
}

.wizard-header h3 {
    color: var(--text-light);
    font-family: var(--font-ui);
    font-size: 22px;
    margin-bottom: 8px;
}

.wizard-header p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

.wizard-progress {
    display: flex;
    justify-content: space-between;
    background: var(--light-bg);
    padding: 20px 40px;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.wizard-progress-bar {
    position: absolute;
    top: 50%;
    left: 40px;
    right: 40px;
    height: 4px;
    background: var(--border-color);
    transform: translateY(-50%);
    z-index: 1;
}

.wizard-progress-fill {
    height: 100%;
    background: var(--secondary);
    width: 0%;
    transition: var(--transition);
}

.wizard-step-node {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.node-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 3px solid var(--border-color);
    color: var(--text-muted);
    font-weight: 700;
    font-family: var(--font-ui);
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.wizard-step-node.active .node-circle {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--secondary);
    box-shadow: 0 0 0 4px rgba(10,37,64,0.1);
}

.wizard-step-node.completed .node-circle {
    border-color: var(--secondary);
    background: var(--secondary);
    color: var(--primary);
}

.node-label {
    font-size: 11px;
    font-family: var(--font-ui);
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wizard-step-node.active .node-label {
    color: var(--primary);
}

.wizard-body {
    padding: 40px;
}

.wizard-step {
    display: none;
}

.wizard-step.active {
    display: block;
    animation: fadeIn 0.4s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.wizard-footer {
    display: flex;
    justify-content: space-between;
    padding: 24px 40px;
    background: var(--light-bg);
    border-top: 1px solid var(--border-color);
}

/* Dynamic Interactive Custom Inputs */
.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
}

.form-group label span {
    color: var(--danger);
}

.form-control {
    width: 100%;
    padding: 14px 20px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-dark);
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(10,37,64,0.06);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230A2540' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 16px;
    padding-right: 48px;
}

/* File Upload Field */
.file-upload-wrapper {
    position: relative;
    border: 2px dashed var(--border-color);
    border-radius: var(--radius-md);
    padding: 30px;
    text-align: center;
    background: var(--light-bg);
    cursor: pointer;
    transition: var(--transition);
}

.file-upload-wrapper:hover {
    border-color: var(--primary);
    background: rgba(10,37,64,0.02);
}

.file-upload-wrapper i {
    font-size: 32px;
    color: var(--primary-light);
    margin-bottom: 12px;
}

.file-upload-wrapper input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

/* Client Dashboard layout */
.dashboard-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    margin: 40px 0;
}

@media (max-width: 992px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
}

.sidebar-card {
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 30px;
    height: fit-content;
    box-shadow: var(--shadow-sm);
}

.user-profile-section {
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 24px;
    margin-bottom: 24px;
}

.avatar-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-ui);
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 12px auto;
}

.user-profile-section h4 {
    font-size: 16px;
    color: var(--primary);
}

.user-profile-section span {
    font-size: 12px;
    color: var(--text-muted);
}

.dashboard-menu {
    list-style: none;
}

.dashboard-menu li {
    margin-bottom: 8px;
}

.dashboard-menu li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
}

.dashboard-menu li.active a,
.dashboard-menu li a:hover {
    background: rgba(10,37,64,0.05);
    color: var(--primary);
}

.dashboard-menu li.logout a {
    color: var(--danger);
}

.dashboard-menu li.logout a:hover {
    background: rgba(239,68,68,0.05);
}

.dashboard-content-box {
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 40px;
    box-shadow: var(--shadow-sm);
}

/* Status Tracker Visual Component */
.status-tracker-box {
    background: var(--light-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 30px;
    margin-bottom: 30px;
}

.tracker-title {
    font-family: var(--font-ui);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary);
}

.tracker-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.tracker-line {
    position: absolute;
    top: 15px;
    left: 20px;
    right: 20px;
    height: 4px;
    background: var(--border-color);
    z-index: 1;
}

.tracker-line-fill {
    height: 100%;
    background: var(--success);
    width: 0%;
    transition: var(--transition);
}

.tracker-step {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 80px;
}

.tracker-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 3px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 12px;
    margin: 0 auto 8px auto;
    transition: var(--transition);
}

.tracker-step.active .tracker-circle {
    border-color: var(--primary-light);
    color: var(--primary-light);
}

.tracker-step.completed .tracker-circle {
    border-color: var(--success);
    background: var(--success);
    color: #FFFFFF;
}

.tracker-step span {
    font-size: 10px;
    font-family: var(--font-ui);
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted);
    display: block;
}

.tracker-step.completed span {
    color: var(--success);
}

.tracker-step.active span {
    color: var(--primary-light);
}

/* Premium Styled Tables */
.premium-table-wrapper {
    overflow-x: auto;
    margin: 20px 0;
}

.premium-table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--font-body);
    font-size: 14px;
}

.premium-table th {
    background: var(--primary);
    color: var(--text-light);
    font-family: var(--font-ui);
    font-weight: 600;
    text-align: left;
    padding: 16px 20px;
}

.premium-table td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-color);
}

.premium-table tbody tr:hover {
    background: rgba(13,37,64,0.01);
}

/* Status Badges */
.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 50px;
    font-family: var(--font-ui);
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-pending { background: rgba(245,158,11,0.1); color: var(--warning); }
.badge-review { background: rgba(10,37,64,0.1); color: var(--primary-light); }
.badge-filed { background: rgba(16,185,129,0.1); color: var(--success); }
.badge-registered { background: #D4AF37; color: #FFFFFF; }

/* Trademark Quick Search Simulator */
.search-results-box {
    margin-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    display: none;
}

.search-results-box.active {
    display: block;
}

.search-alert {
    padding: 15px 20px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-family: var(--font-body);
    display: flex;
    align-items: center;
    gap: 12px;
}

.search-alert-success {
    background: rgba(16,185,129,0.15);
    border: 1px solid var(--success);
    color: #10B981;
}

.search-alert-warning {
    background: rgba(239,68,68,0.15);
    border: 1px solid var(--danger);
    color: #F87171;
}

/* Page Intro Banners */
.page-banner {
    background: linear-gradient(135deg, rgba(10,37,64,0.45) 0%, rgba(3,12,26,0.65) 100%), url('../images/hero.webp');
    background-size: cover;
    background-position: center center;
    color: var(--text-light);
    padding: 80px 0;
    text-align: center;
    border-bottom: 2px solid var(--secondary);
}

.page-banner h1 {
    color: var(--text-light);
    font-family: var(--font-heading);
    font-size: 42px;
    margin-bottom: 12px;
}

.page-banner p {
    color: rgba(255,255,255,0.9);
    font-size: 15px;
    max-width: 600px;
    margin: 0 auto;
}

/* About us card */
.about-hero-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 992px) {
    .about-hero-box {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-hero-box > div:first-child {
        order: 1;
    }
    .about-hero-box > div:last-child {
        order: 2;
    }
}

.about-features-list {
    list-style: none;
    margin-top: 20px;
}

.about-features-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 16px;
    font-size: 15px;
}

.about-features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: 700;
}

/* Notification alerts */
.notification {
    padding: 15px 25px;
    border-radius: var(--radius-sm);
    margin-bottom: 25px;
    font-family: var(--font-body);
    font-size: 14px;
}

.notification-success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    border-left: 5px solid var(--success);
}

.notification-error {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger);
    border-left: 5px solid var(--danger);
}
