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

:root {
    /* Luxury Color Palette - Navy & Gold Theme */
    --primary-color: #0a1628;
    --primary-dark: #050d18;
    --primary-light: #1a2d4a;
    --accent-color: #d4af37;
    --accent-light: #f4d03f;
    --accent-dark: #b8941f;
    --text-dark: #0a1628;
    --text-medium: #4a5568;
    --text-light: #718096;
    --bg-light: #faf9f6;
    --bg-cream: #f5f3f0;
    --bg-white: #ffffff;
    --border-color: #e8e6e3;
    --gold-gradient: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #d4af37 100%);
    --luxury-gradient: linear-gradient(135deg, #0a1628 0%, #1a2d4a 50%, #0a1628 100%);
    --cream-gradient: linear-gradient(135deg, #faf9f6 0%, #f5f3f0 100%);
    --shadow-sm: 0 2px 4px rgba(10, 22, 40, 0.08);
    --shadow-md: 0 8px 16px rgba(10, 22, 40, 0.12);
    --shadow-lg: 0 16px 32px rgba(10, 22, 40, 0.15);
    --shadow-xl: 0 24px 48px rgba(10, 22, 40, 0.2);
    --shadow-gold: 0 8px 24px rgba(212, 175, 55, 0.25);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

@media (max-width: 1200px) {
    html { font-size: 15px; }
}

@media (max-width: 992px) {
    html { font-size: 14px; }
}

@media (max-width: 768px) {
    html { font-size: 13px; }
}

@media (max-width: 480px) {
    html { font-size: 12px; }
}

body {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    font-size: 1rem;
}

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

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

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

ul {
    list-style: none;
}

/* Typography - Luxury & Responsive */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', 'Georgia', 'Times New Roman', serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
h5 { font-size: clamp(1.1rem, 2vw, 1.25rem); }
h6 { font-size: clamp(1rem, 1.5vw, 1.1rem); }

p {
    margin-bottom: 1rem;
    line-height: 1.8;
    font-size: 1rem;
}

/* Luxury Display Text */
.display-title {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-weight: 700;
    font-size: clamp(2.5rem, 6vw, 4rem);
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-medium);
    line-height: 1.7;
}

/* Section Styles */
.section-padding {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

.section-header {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 4rem;
    padding: 0 1rem;
}

.section-title {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

.section-subtitle {
    color: var(--text-medium);
    font-size: clamp(1rem, 2vw, 1.125rem);
    line-height: 1.7;
}

/* Navigation */
.header {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
}

.logo-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-size: 1.25rem;
}

.logo-text {
    color: var(--primary-color);
    font-size: 1.25rem;
}

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

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

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

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

.nav-link.btn-primary {
    background: var(--accent-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
}

.nav-link.btn-primary::after {
    display: none;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-white);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    padding: 0.5rem 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
}

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

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-dark);
}

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

.mega-menu {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    min-width: 300px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
}

/* Hero Section - Luxury Styling */
.hero {
    background: var(--luxury-gradient);
    color: white;
    padding: 180px 0 120px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(212,175,55,0.03)" stroke-width="0.5"/></svg>');
    background-size: 100% 100%, 100% 100%, 120px;
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 22, 40, 0.4) 100%);
}

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

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.375rem);
    margin-bottom: 3rem;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease 0.2s both;
    font-weight: 300;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 5rem;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: clamp(0.75rem, 1.5vw, 0.9rem);
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Buttons - Elegant Luxury Styling */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875em 2.25em;
    border-radius: 50em;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    line-height: 1;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gold-gradient);
    color: var(--primary-color);
    box-shadow: var(--shadow-gold);
    font-weight: 700;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #f4d03f 0%, #d4af37 50%, #f4d03f 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.35);
}

.btn-outline {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-color);
    color: var(--accent-color);
}

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

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

.btn-lg {
    padding: 1em 2.75em;
    font-size: 1rem;
}

.btn-sm {
    padding: 0.625em 1.5em;
    font-size: 0.8rem;
}

.btn-full {
    width: 100%;
}

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

.service-card {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(212, 175, 55, 0.3);
}

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

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.service-card p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.link-arrow {
    color: var(--accent-dark);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.link-arrow:hover {
    color: var(--primary-color);
    gap: 0.75rem;
}

/* Features Grid - Luxury Styling */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.feature-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--gold-gradient);
    color: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    box-shadow: var(--shadow-gold);
}

.feature-item h4 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-size: 1.25rem;
}

/* Locations - Luxury Cards */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.location-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.location-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transition: var(--transition);
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(212, 175, 55, 0.3);
}

.location-card:hover::before {
    transform: scaleX(1);
}

.location-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.location-card ul {
    margin-top: 1rem;
}

.location-card li {
    margin-bottom: 0.75rem;
}

.location-card a {
    color: var(--text-medium);
    transition: var(--transition);
    display: inline-block;
}

.location-card a:hover {
    color: var(--accent-dark);
    transform: translateX(5px);
}

/* States List - Luxury Pills */
.states-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.state-link {
    background: var(--bg-white);
    padding: 1rem 1.75rem;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.state-link:hover {
    background: var(--luxury-gradient);
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* Cities Grid - Luxury Styling */
.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.25rem;
    margin-top: 2rem;
}

.city-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.5rem;
    background: var(--bg-white);
    border-radius: 50em;
    box-shadow: var(--shadow-sm);
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    text-align: center;
}

.city-link:hover {
    background: var(--luxury-gradient);
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* CTA Section - Luxury */
.cta-section {
    background: var(--luxury-gradient);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    margin-bottom: 1.5rem;
    font-size: 2.75rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer - Luxury */
.footer {
    background: var(--luxury-gradient);
    color: white;
    padding: 80px 0 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold-gradient);
}

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

.footer-brand h3 {
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
}

.footer-brand p {
    opacity: 0.85;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.1);
}

.social-links a:hover {
    background: var(--gold-gradient);
    color: var(--primary-color);
    transform: translateY(-3px);
    border-color: transparent;
}

.footer-links h4 {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    opacity: 0.8;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent-light);
}

.footer-contact p {
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 2rem 0;
    text-align: center;
    opacity: 0.6;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 140px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* Service Detail Pages */
.service-detail {
    padding: 60px 0;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.service-detail-content h3 {
    font-size: 2.25rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-lead {
    font-size: 1.25rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.service-features h4,
.service-technologies h4 {
    color: var(--primary-color);
    margin: 2rem 0 1rem;
}

.service-features ul {
    list-style: disc;
    padding-left: 1.5rem;
}

.service-features li {
    margin-bottom: 0.75rem;
    color: var(--text-medium);
}

.service-features li strong {
    color: var(--text-dark);
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tech-tag {
    background: var(--bg-light);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    color: var(--text-medium);
    border: 1px solid var(--border-color);
}

.service-detail-benefits {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: var(--radius-lg);
    position: sticky;
    top: 100px;
}

.service-detail-benefits h4 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-detail-benefits ul {
    list-style: none;
}

.service-detail-benefits li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-medium);
    position: relative;
    padding-left: 1.5rem;
}

.service-detail-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

/* Skills Section */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.skill-category {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.skill-category h4 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.skill-category ul {
    list-style: disc;
    padding-left: 1.5rem;
}

.skill-category li {
    margin-bottom: 0.75rem;
    color: var(--text-medium);
}

/* WhatsApp Styles */
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn svg {
    width: 20px;
    height: 20px;
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--text-dark);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

.whatsapp-inline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 500;
    transition: var(--transition);
}

.whatsapp-inline:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

/* Enhanced City Page Styles */
.city-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 50%, var(--accent-color) 100%);
    color: white;
    padding: 160px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.city-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="3" fill="rgba(255,255,255,0.08)"/><circle cx="40" cy="80" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: 100px;
}

.city-hero .container {
    position: relative;
    z-index: 1;
}

.city-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.city-hero p {
    font-size: 1.5rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

/* City Content Enhancement */
.city-content {
    padding: 80px 0;
}

.city-intro {
    background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
    padding: 4rem;
    border-radius: var(--radius-xl);
    margin-bottom: 4rem;
    box-shadow: var(--shadow-lg);
    border-left: 5px solid var(--accent-color);
}

.city-intro h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.city-intro p {
    font-size: 1.25rem;
    color: var(--text-medium);
    line-height: 1.8;
}

/* City Benefits Section */
.city-benefits {
    margin-bottom: 4rem;
}

.city-benefits h3 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.25rem;
    margin-bottom: 3rem;
}

.city-benefits .benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.city-benefits .benefit-item {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border-top: 4px solid var(--accent-color);
}

.city-benefits .benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.city-benefits .benefit-item h4 {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.city-benefits .benefit-item p {
    color: var(--text-medium);
    margin: 0;
    line-height: 1.7;
}

/* Services Offered Section */
.services-offered {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    padding: 4rem;
    border-radius: var(--radius-xl);
    margin-bottom: 4rem;
    color: white;
}

.services-offered h3 {
    text-align: center;
    color: white;
    font-size: 2.25rem;
    margin-bottom: 3rem;
}

.services-grid-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-item {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.2);
    transition: var(--transition);
}

.service-item:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-3px);
}

.service-item h4 {
    color: white;
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.service-item p {
    color: rgba(255,255,255,0.9);
    margin: 0;
    font-size: 0.95rem;
}

/* Local Advantage Section */
.local-advantage {
    margin-bottom: 4rem;
}

.local-advantage h3 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.25rem;
    margin-bottom: 3rem;
}

.advantage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.advantage-item {
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-light) 100%);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.advantage-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.advantage-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.advantage-item p {
    color: var(--text-medium);
    font-size: 1rem;
    margin: 0;
}

/* State & City Hero - Luxury Styling */
.state-hero,
.city-hero {
    background: var(--luxury-gradient);
    color: white;
    padding: 180px 0 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.state-hero::before,
.city-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
}

.state-hero .container,
.city-hero .container {
    position: relative;
    z-index: 1;
}

.state-hero h1,
.city-hero h1 {
    font-size: 3.75rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    letter-spacing: -0.02em;
}

.state-hero p,
.city-hero p {
    font-size: 1.5rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
}

/* Nearby Cities Section - Luxury */
.nearby-cities {
    background: var(--bg-cream);
    padding: 3.5rem;
    border-radius: var(--radius-xl);
    margin-bottom: 4rem;
    text-align: center;
    border: 1px solid var(--border-color);
}

.nearby-cities h3 {
    color: var(--primary-color);
    margin-bottom: 1.25rem;
    font-size: 1.75rem;
}

.nearby-cities p {
    color: var(--text-medium);
    margin-bottom: 0;
    font-size: 1.1rem;
}

.nearby-cities a {
    color: var(--accent-dark);
    font-weight: 600;
    transition: var(--transition);
}

.nearby-cities a:hover {
    text-decoration: underline;
}

/* Enhanced CTA Section - Luxury Gold */
.cta-section-local {
    background: var(--luxury-gradient);
    padding: 5rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section-local::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
}

.cta-section-local h3 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.cta-section-local p {
    font-size: 1.25rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.cta-buttons .btn-primary {
    background: var(--gold-gradient);
    color: var(--primary-color);
}

.cta-buttons .btn-primary:hover {
    background: linear-gradient(135deg, #f4d03f 0%, #d4af37 50%, #f4d03f 100%);
    color: var(--primary-color);
}

.cta-buttons .btn-secondary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
}

.cta-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-color);
    color: var(--accent-color);
}

/* Contact Highlight Box - Luxury WhatsApp */
.contact-highlight {
    background: linear-gradient(135deg, #128c7e 0%, #25d366 100%);
    color: white;
    padding: 4rem;
    border-radius: var(--radius-xl);
    margin: 4rem 0;
    text-align: center;
    box-shadow: 0 20px 40px rgba(37, 211, 102, 0.2);
}

.contact-highlight h3 {
    color: white;
    font-size: 2.25rem;
    margin-bottom: 1.25rem;
}

.contact-highlight p {
    font-size: 1.25rem;
    opacity: 0.95;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-highlight .whatsapp-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    color: #25d366;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.125rem;
    transition: var(--transition);
}

.contact-highlight .whatsapp-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.contact-highlight .whatsapp-cta svg {
    width: 24px;
    height: 24px;
}

/* Contact form layout & inputs */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

.contact-info {
    padding: 1.5rem 0;
}

.contact-form-wrapper {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.95rem;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea {
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    background: var(--bg-cream);
    color: var(--text-dark);
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
    width: 100%;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--accent-color);
    box-shadow: 0 6px 18px rgba(212,175,55,0.12);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.btn-full {
    width: 100%;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .contact-form-wrapper {
        padding: 1.25rem;
    }
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-detail-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .state-hero h1,
    .city-hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--bg-white);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
        padding: 2rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero {
        padding: 120px 0 60px;
    }

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

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }

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

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

    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }

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

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

    .state-groups {
        grid-template-columns: 1fr;
    }

    .cities-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }

    .mega-menu {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-stats {
        grid-template-columns: 1fr 1fr;
    }

    .location-list {
        grid-template-columns: 1fr;
    }

    .states-list {
        gap: 0.5rem;
    }

    .state-link {
        padding: 0.5rem 0.75rem;
        font-size: 0.875rem;
    }

    /* Mobile WhatsApp */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }

    .whatsapp-tooltip {
        display: none;
    }

    /* Mobile City Page Enhancements */
    .city-hero {
        padding: 120px 0 60px;
    }

    .city-hero h1 {
        font-size: 2rem;
    }

    .city-hero p {
        font-size: 1.125rem;
    }

    .city-intro {
        padding: 2rem;
        margin-bottom: 2rem;
    }

    .city-intro h2 {
        font-size: 1.75rem;
    }

    .city-intro p {
        font-size: 1.1rem;
    }

    .city-benefits .benefits-list {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .city-benefits .benefit-item {
        padding: 1.5rem;
    }

    .services-offered {
        padding: 2rem;
    }

    .services-grid-compact {
        grid-template-columns: 1fr;
    }

    .advantage-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .advantage-item {
        padding: 1.5rem;
    }

    .advantage-number {
        font-size: 2rem;
    }

    .cta-section-local {
        padding: 2rem;
    }

    .cta-section-local h3 {
        font-size: 1.5rem;
    }

    .contact-highlight {
        padding: 2rem;
    }

    .contact-highlight h3 {
        font-size: 1.5rem;
    }

    .nav-menu .whatsapp-btn {
        margin-top: 1rem;
        width: 100%;
        justify-content: center;
    }
}

/* Sitemap Page Styles */
.sitemap-section {
    padding: 60px 0 80px;
}

.sitemap-intro {
    background: linear-gradient(135deg, var(--bg-cream) 0%, #ffffff 100%);
    padding: 3rem;
    border-radius: var(--radius-lg);
    margin-bottom: 3rem;
    border-left: 5px solid var(--accent-color);
}

.sitemap-intro h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.sitemap-intro p {
    color: var(--text-medium);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.sitemap-intro a {
    color: var(--accent-dark);
    font-weight: 600;
}

.sitemap-intro a:hover {
    color: var(--primary-color);
}

.sitemap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.sitemap-section-box {
    background: var(--bg-white);
    padding: 2.25rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.sitemap-section-box:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.sitemap-section-box h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 1rem;
}

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

.sitemap-list li {
    margin-bottom: 0.75rem;
}

.sitemap-list a {
    color: var(--text-medium);
    font-weight: 500;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.sitemap-list a:hover {
    color: var(--accent-dark);
    transform: translateX(5px);
}

.sitemap-list a::before {
    content: '→';
    opacity: 0;
    transition: var(--transition);
}

.sitemap-list a:hover::before {
    opacity: 1;
}

.sitemap-columns {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.5rem 1rem;
}

.sitemap-seo-info {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-cream) 100%);
    padding: 3rem;
    border-radius: var(--radius-lg);
    margin-bottom: 3rem;
    border-top: 4px solid var(--accent-color);
}

.sitemap-seo-info h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.seo-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.seo-item {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.seo-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.seo-item h4 {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.seo-item h4::before {
    content: '✓';
    color: var(--accent-color);
    font-weight: 700;
}

.seo-item p {
    color: var(--text-medium);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.seo-item a {
    color: var(--accent-dark);
    font-weight: 600;
}

.seo-item a:hover {
    color: var(--primary-color);
}

.sitemap-cta {
    background: var(--luxury-gradient);
    color: white;
    padding: 4rem;
    border-radius: var(--radius-xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sitemap-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
}

.sitemap-cta h3 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.sitemap-cta p {
    font-size: 1.1rem;
    opacity: 0.95;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.sitemap-cta a {
    color: white;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.cta-buttons .btn-primary {
    background: var(--gold-gradient);
    color: var(--primary-color);
}

.cta-buttons .btn-primary:hover {
    background: linear-gradient(135deg, #f4d03f 0%, #d4af37 50%, #f4d03f 100%);
}

.cta-buttons .btn-secondary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
}

.cta-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-color);
    color: var(--accent-color);
}

/* Responsive Sitemap */
@media (max-width: 992px) {
    .sitemap-grid {
        grid-template-columns: 1fr;
    }

    .sitemap-columns {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }

    .sitemap-cta {
        padding: 2.5rem;
    }

    .sitemap-cta h3 {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .sitemap-intro {
        padding: 2rem;
        margin-bottom: 2rem;
    }

    .sitemap-intro h2 {
        font-size: 1.75rem;
    }

    .sitemap-section-box {
        padding: 1.5rem;
    }

    .sitemap-section-box h3 {
        font-size: 1.25rem;
    }

    .seo-details {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .sitemap-cta {
        padding: 2rem;
    }

    .sitemap-cta h3 {
        font-size: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}