/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    color: white;
    box-sizing: border-box;
}

/* Performance optimizations */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Optimize animations for better performance */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Skip Navigation for Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #1e40af;
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 10000;
    font-weight: 600;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 6px;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Page load animation */
body {
    animation: fadeIn 0.8s ease-in;
}

/* Navigation animation */
.nav-container {
    animation: slideInFromLeft 0.8s ease-out;
}

/* Hero content animation */
.hero-content {
    animation: slideInFromLeft 1s ease-out 0.3s both;
}

.hero-graphic {
    animation: slideInFromRight 1s ease-out 0.5s both;
}

/* Enhanced button animations */
.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: 0;
}

.btn:hover::after {
    width: 300px;
    height: 300px;
}

.btn > * {
    position: relative;
    z-index: 1;
}

/* Enhanced service card animations */
.service-card {
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(30, 64, 175, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

/* Enhanced navigation animations */
.nav-link {
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #1e40af;
    transition: width 0.3s ease;
}

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

/* Loading spinner */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

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

/* Header Styles */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Image */
.logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    max-width: 100%;
}

.logo-image:hover {
    transform: scale(1.05);
}

/* Nav Brand Text */
.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e40af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-brand:hover {
    color: #1e3a8a;
}

/* Cart Navigation Item */
.cart-nav-item {
    position: relative;
}

.cart-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

/* Cart icon size and hover */
.cart-link i {
    font-size: 22px;
    color: #374151;
    line-height: 1;
}

.cart-link:hover i {
    color: #1e40af;
}

.cart-count {
    background: #ef4444;
    color: white;
    border-radius: 50%;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    position: absolute;
    top: -6px;
    right: -10px;
    transition: all 0.3s ease;
    transform: scale(1);
    padding: 0 4px;
    border: 2px solid #fff; /* white ring to separate from background */
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.cart-link:hover .cart-count {
    background: #dc2626;
    transform: scale(1.1);
}

/* Tweak badge/icon sizes on small screens */
@media (max-width: 640px) {
    .cart-link i {
        font-size: 20px;
    }
    .cart-count {
        min-width: 16px;
        height: 16px;
        top: -6px;
        right: -8px;
        font-size: 0.7rem;
        padding: 0 3px;
    }
}

/* Responsive Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

.hero-visual img,
.service-card img,
.portfolio-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

/* Image placeholders for better mobile experience */
.image-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.image-placeholder p {
    font-size: 1rem;
    margin-top: 0.5rem;
    color: #64748b;
}

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

.nav-link {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #1e40af;
}

/* CTA Button */

.cta-button {
    background: #1e40af;
    color: white !important;
    padding: 0.5rem 1.5rem;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #1e3a8a;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section - Minimal Redesign */
.hero {
    background: #f8fafc; /* Very light slate background instead of dark gradient */
    color: #0f172a; /* Dark text for contrast */
    padding: 10rem 0 6rem 0; /* Extra top padding to clear fixed header */
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #475569;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background-color: #3b82f6; /* Trust blue */
    border-radius: 50%;
    display: inline-block;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.hero-title .highlight {
    color: #2563eb; /* Clean distinct blue instead of gradient text */
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: #4b5563; /* Softer gray for readability */
    max-width: 90%;
}

.hero-stats-minimal {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    color: #334155;
}

.stat-mini {
    display: flex;
    flex-direction: column;
}

.stat-mini strong {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
}

.stat-mini span {
    font-size: 0.85rem;
    color: #64748b;
    margin-top: 0.2rem;
}

.stat-divider {
    width: 1px;
    height: 30px;
    background-color: #cbd5e1;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 0.875rem 1.75rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.05rem;
}

.btn-primary {
    background: #2563eb; /* Primary brand blue */
    color: #fff;
    border: 1px solid transparent;
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.2);
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.3);
}

.btn-outline {
    background: transparent;
    color: #475569;
    border: 1px solid #cbd5e1;
}

.btn-outline:hover {
    background: #f1f5f9;
    color: #0f172a;
    border-color: #94a3b8;
}

.hero-visual {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.hero-minimal-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); /* Soft, elegant shadow */
    transition: transform 0.3s ease;
}

.hero-minimal-img:hover {
    transform: translateY(-5px);
}

/* Responsive adjustments for minimal hero */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-stats-minimal {
        justify-content: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-visual {
        justify-content: center;
    }
}

/* Services Preview - Minimal Redesign */
.services-preview {
    background: #fff;
    width: 100%;
    max-width: unset;
    margin: 0;
    padding: 6rem 0 4rem 0; /* More breathing room */
    border-radius: 0;
    box-shadow: none;
    position: relative;
}

.services-preview .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    text-align: center;
    font-size: 2.25rem;
    font-weight: 700;
    color: #0f172a; /* Slate 900 */
    margin-bottom: 4rem;
    letter-spacing: -0.01em;
}

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

.service-card {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05), 0 1px 2px -1px rgba(0, 0, 0, 0.05); /* Very subtle base shadow */
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0; /* Crisp light gray border */
    position: relative;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -4px rgba(0, 0, 0, 0.05); /* Soft premium shadow on hover */
    border-color: #cbd5e1;
}

.service-icon {
    width: 50px;
    height: 50px;
    background: #f1f5f9; /* Slate 100 instead of bright blue bg */
    border-radius: 50%; /* Classic circle */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-icon i {
    font-size: 1.25rem;
    color: #2563eb; /* Clean blue */
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: #2563eb;
}

.service-card:hover .service-icon i {
    color: white;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-card p {
    color: #4b5563;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 0.95rem;
    flex-grow: 1;
}

.service-price {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    padding-top: 1.5rem;
    border-top: 1px solid #f1f5f9;
    margin-top: auto;
}

.text-center {
    text-align: center;
}

/* Why Choose Us - Minimal Redesign */
.why-choose {
    padding: 6rem 0;
    background: #f8fafc; /* Gentle slate for distinction from white main */
}

.why-choose .section-title {
    margin-bottom: 4rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem; /* More spacing */
}

.feature-item {
    text-align: center;
    padding: 1.5rem;
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: #fff;
    border-radius: 16px; /* Squircle style instead of pure circle */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05); /* Premium soft shadow */
    border: 1px solid #e2e8f0;
}

.feature-icon i {
    font-size: 1.5rem;
    color: #0f172a; /* Slate 900 for a sharper contrast than blue */
}

.feature-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.feature-item p {
    color: #4b5563;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h3 {
    color: #1e40af;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.footer-section h4 {
    color: #f9fafb;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #1e40af;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.footer-contact i {
    color: #1e40af;
    width: 16px;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-radius: 12px 12px 0 0;
    margin-top: 2rem;
}

.footer-legal {
    padding: 2rem;
    color: #e2e8f0;
}

.footer-legal p {
    margin: 0.75rem 0;
    line-height: 1.6;
}

.footer-legal p:first-child {
    font-weight: 600;
    color: #f1f5f9;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #475569;
}

.footer-legal p:nth-child(2) {
    color: #cbd5e1;
    font-size: 0.95rem;
    background: rgba(71, 85, 105, 0.3);
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.footer-legal p:nth-child(3) {
    color: #60a5fa;
    font-weight: 500;
    background: rgba(37, 99, 235, 0.1);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin: 1rem 0;
    border-left: 4px solid #3b82f6;
}

.footer-legal p:nth-child(4) {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #92400e;
    padding: 1rem;
    border-radius: 8px;
    margin: 1.5rem auto;
    max-width: 700px;
    font-weight: 500;
    border-left: 4px solid #f59e0b;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.footer-legal p:last-child {
    color: #94a3b8;
    font-size: 0.9rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #475569;
    font-style: italic;
}

.footer-legal i {
    margin-right: 0.5rem;
    color: #60a5fa;
    width: 16px;
}

.payment-badge {
    font-size: 0.9rem;
    color: #6b7280;
}

/* Hero Visual Styles */
.hero-visual {
    position: relative;
    z-index: 2;
}

/* Mobile Dashboard - Hidden by default */
.hero-dashboard-mobile {
    display: none;
}

.hero-dashboard {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: slideInRight 1s ease-out 0.5s forwards;
    opacity: 0;
    transform: translateX(50px);
}

.dashboard-header {
    background: #f8fafc;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.dashboard-dots {
    display: flex;
    gap: 0.5rem;
}

.dashboard-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e1;
}

.dashboard-dots span:first-child {
    background: #ef4444;
}

.dashboard-dots span:nth-child(2) {
    background: #f59e0b;
}

.dashboard-dots span:last-child {
    background: #10b981;
}

.dashboard-title {
    color: #374151;
    font-weight: 600;
    font-size: 0.9rem;
}

.dashboard-content {
    display: flex;
    height: 300px;
}

.dashboard-sidebar {
    width: 120px;
    background: #f1f5f9;
    padding: 1rem 0;
    border-right: 1px solid #e2e8f0;
}

.sidebar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 0.5rem;
    color: #64748b;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.sidebar-item.active {
    background: #dbeafe;
    color: #1e40af;
}

.sidebar-item i {
    font-size: 1.2rem;
}

.dashboard-main {
    flex: 1;
    padding: 1.5rem;
    background: white;
}

.dashboard-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.dashboard-card {
    background: #f8fafc;
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.card-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.card-content {
    flex: 1;
}

.card-title {
    font-size: 0.8rem;
    color: #64748b;
    margin-bottom: 0.25rem;
}

.card-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: #10b981;
}

.dashboard-chart {
    height: 80px;
    background: #f8fafc;
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid #e2e8f0;
}

.chart-bars {
    display: flex;
    align-items: end;
    gap: 0.5rem;
    height: 100%;
}

.bar {
    flex: 1;
    background: linear-gradient(to top, #3b82f6, #8b5cf6);
    border-radius: 4px 4px 0 0;
    min-height: 20px;
    animation: growUp 1.5s ease-out 2s forwards;
    transform: scaleY(0);
    transform-origin: bottom;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: float 4s ease-in-out infinite;
}

.floating-icon i {
    font-size: 1.5rem;
    color: #60a5fa;
}

.floating-1 {
    top: 10%;
    left: -30px;
    animation-delay: 0s;
}

.floating-2 {
    top: 30%;
    right: -30px;
    animation-delay: 1s;
}

.floating-3 {
    bottom: 20%;
    left: -20px;
    animation-delay: 2s;
}

.floating-4 {
    bottom: 40%;
    right: -20px;
    animation-delay: 3s;
}

/* Enhanced Service Cards */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: #3b82f6;
    font-weight: 500;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #dbeafe;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.service-icon i {
    font-size: 2.5rem;
    color: #3b82f6;
    z-index: 2;
    transition: all 0.3s ease;
}

.icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: 20px;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.service-card:hover .icon-bg {
    transform: scale(1);
}

.service-card:hover .service-icon {
    background: #1e40af;
    transform: scale(1.1) rotate(5deg);
}

.service-card:hover .service-icon i {
    transform: scale(1.1);
    color: white;
}

.service-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
}

.service-content p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature-tag {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.service-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 12px;
}

.price-label {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 0.25rem;
}

.price-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
}

.service-stats {
    display: flex;
    justify-content: space-around;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: #3b82f6;
}

.stat-label {
    font-size: 0.8rem;
    color: #6b7280;
}

/* Google Maps Section */
.map-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.map-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.map-container h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 2rem;
}

.map-wrapper {
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    overflow: hidden;
}

.map-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    gap: 2rem;
}

.map-address h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.map-address h3 i {
    color: #ef4444;
    font-size: 1.2rem;
}

.map-address p {
    color: #6b7280;
    line-height: 1.6;
    font-size: 1.1rem;
}

.map-directions .btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.map-directions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

/* Cookie Banner Styles */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1e40af;
    color: white;
    padding: 1rem;
    z-index: 10000;
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.cookie-text h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.cookie-text p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.cookie-text a {
    color: #fbbf24;
    text-decoration: underline;
}

.cookie-text a:hover {
    color: #f59e0b;
}

.cookie-actions {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

.cookie-actions .btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-actions .btn-outline {
    background: transparent;
    color: white;
    border: 1px solid white;
}

.cookie-actions .btn-outline:hover {
    background: white;
    color: #1e40af;
}

.cookie-actions .btn-primary {
    background: #fbbf24;
    color: #1e40af;
    font-weight: 600;
}

.cookie-actions .btn-primary:hover {
    background: #f59e0b;
}

@media (max-width: 768px) {
    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-actions {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-actions .btn {
        flex: 1;
        max-width: 120px;
    }
}

/* Enhanced Mobile Navigation */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    background: none;
    border: none;
    position: relative;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s ease;
    border-radius: 2px;
    display: block;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .hero-container {
        gap: 4rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
        z-index: 1001;
        position: relative;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 27px rgba(0,0,0,0.1);
        padding: 5rem 0 2rem;
        backdrop-filter: blur(10px);
        z-index: 1000;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .nav-link {
        font-size: 1.2rem;
        padding: 1rem 2rem;
        display: block;
        border-radius: 8px;
        margin: 0 1rem;
        transition: all 0.3s ease;
    }
    
    .nav-link:hover {
        background: #f8fafc;
        color: #1e40af;
    }
    
    .cta-button {
        background: #1e40af;
        color: white;
        margin: 1rem;
        padding: 1rem 2rem;
        border-radius: 8px;
        font-weight: 600;
    }
    
    .hero {
        padding: 6rem 0 4rem;
        min-height: auto;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .stat-item {
        background: rgba(255, 255, 255, 0.1);
        padding: 1rem;
        border-radius: 12px;
        backdrop-filter: blur(10px);
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-bottom: 3rem;
    }
    
    .btn-large {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .trust-badges {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .trust-item {
        padding: 1.5rem;
    }
    
    /* Hide desktop dashboard on mobile */
    .hero-visual {
        display: none;
    }
    
    /* Show mobile dashboard */
    .hero-dashboard-mobile {
        display: block;
        max-width: 100%;
        margin: 1rem auto;
        background: rgba(255, 255, 255, 0.95);
        border-radius: 12px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        animation: slideInUp 0.8s ease-out 0.6s forwards;
        opacity: 0;
        transform: translateY(30px);
        overflow: hidden;
    }
    
    .hero-dashboard-mobile .dashboard-content {
        height: 160px;
    }
    
    .hero-dashboard-mobile .dashboard-sidebar {
        width: 60px;
        padding: 0.3rem 0;
    }
    
    .hero-dashboard-mobile .sidebar-item {
        padding: 0.3rem 0.1rem;
        font-size: 0.6rem;
    }
    
    .hero-dashboard-mobile .sidebar-item i {
        font-size: 0.8rem;
    }
    
    .hero-dashboard-mobile .dashboard-main {
        padding: 0.6rem;
    }
    
    .hero-dashboard-mobile .dashboard-cards {
        grid-template-columns: 1fr;
        gap: 0.3rem;
        margin-bottom: 0.6rem;
    }
    
    .hero-dashboard-mobile .dashboard-card {
        padding: 0.5rem;
        flex-direction: row;
        text-align: left;
        gap: 0.5rem;
        align-items: center;
    }
    
    .hero-dashboard-mobile .card-icon {
        width: 25px;
        height: 25px;
        flex-shrink: 0;
    }
    
    .hero-dashboard-mobile .card-title {
        font-size: 0.6rem;
        margin-bottom: 0.1rem;
    }
    
    .hero-dashboard-mobile .card-value {
        font-size: 0.8rem;
    }
    
    .hero-dashboard-mobile .dashboard-chart {
        height: 40px;
        padding: 0.4rem;
    }
    
    .services-preview {
        padding: 4rem 0;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
    }
    
    .service-icon i {
        font-size: 1.3rem;
    }
    
    .why-choose {
        padding: 4rem 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .feature-item {
        padding: 1.5rem;
    }
    
    .cta-section {
        padding: 4rem 0;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .footer {
        padding: 3rem 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-section {
        margin-bottom: 1.5rem;
    }
    
    .footer-legal {
        padding: 1.5rem;
    }
    
    .footer-legal p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .logo-image {
        height: 40px;
    }
    
    .hero {
        padding: 5rem 0 3rem;
    }
    
    .hero-container {
        padding: 0 0.5rem;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .hero-stats {
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .btn-large {
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
        max-width: 100%;
    }
    
    .trust-item {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .trust-icon {
        width: 35px;
        height: 35px;
    }
    
    .trust-icon i {
        font-size: 1rem;
    }
    
    .hero-dashboard-mobile {
        max-width: 100%;
        margin: 0.8rem auto;
        border-radius: 10px;
    }
    
    .hero-dashboard-mobile .dashboard-header {
        padding: 0.6rem 0.8rem;
    }
    
    .hero-dashboard-mobile .dashboard-title {
        font-size: 0.8rem;
    }
    
    .hero-dashboard-mobile .dashboard-content {
        height: 140px;
    }
    
    .hero-dashboard-mobile .dashboard-sidebar {
        width: 50px;
        padding: 0.2rem 0;
    }
    
    .hero-dashboard-mobile .sidebar-item {
        padding: 0.2rem 0.1rem;
        font-size: 0.55rem;
    }
    
    .hero-dashboard-mobile .sidebar-item i {
        font-size: 0.7rem;
    }
    
    .hero-dashboard-mobile .dashboard-main {
        padding: 0.5rem;
    }
    
    .hero-dashboard-mobile .dashboard-cards {
        gap: 0.25rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-dashboard-mobile .dashboard-card {
        padding: 0.4rem;
        flex-direction: row;
        text-align: left;
        gap: 0.4rem;
        align-items: center;
    }
    
    .hero-dashboard-mobile .card-icon {
        width: 20px;
        height: 20px;
    }
    
    .hero-dashboard-mobile .card-title {
        font-size: 0.55rem;
    }
    
    .hero-dashboard-mobile .card-value {
        font-size: 0.7rem;
    }
    
    .hero-dashboard-mobile .dashboard-chart {
        height: 35px;
        padding: 0.3rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .services-preview {
        padding: 3rem 0;
    }
    
    .service-card {
        padding: 1.25rem;
        border-radius: 15px;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
        line-height: 1.3;
    }
    
    .service-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .service-price {
        font-size: 1rem;
    }
    
    .why-choose {
        padding: 3rem 0;
    }
    
    .feature-item {
        padding: 1.25rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .feature-icon i {
        font-size: 1.5rem;
    }
    
    .feature-item h3 {
        font-size: 1.1rem;
        line-height: 1.3;
    }
    
    .feature-item p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .cta-section {
        padding: 3rem 0;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .cta-content p {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        border-radius: 6px;
    }
    
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        gap: 1.5rem;
    }
    
    .footer-section h3 {
        font-size: 1.2rem;
    }
    
    .footer-section h4 {
        font-size: 1rem;
    }
    
    .footer-section p,
    .footer-section li {
        font-size: 0.9rem;
    }
    
    .footer-legal {
        padding: 1rem;
    }
    
    .footer-legal p {
        font-size: 0.8rem;
        line-height: 1.4;
        margin: 0.5rem 0;
    }
    
    .footer-legal p:first-child {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .map-info {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .map-container h2 {
        font-size: 1.8rem;
    }
    
    .map-address h3 {
        font-size: 1.3rem;
    }
    
    .map-address p {
        font-size: 1rem;
    }
    
    .floating-elements {
        display: none;
    }
    
    .floating-icon {
        display: none;
    }
    
    .image-placeholder {
        height: 150px;
        font-size: 2rem;
    }
    
    .image-placeholder p {
        font-size: 0.9rem;
    }
}

/* Mobile Form Improvements */
@media (max-width: 768px) {
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    .form-group label {
        font-size: 1rem;
        margin-bottom: 0.5rem;
        display: block;
        font-weight: 500;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
        border: 2px solid #e5e7eb;
        border-radius: 8px;
        transition: border-color 0.3s ease;
        background: white;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }
    
    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
        outline: none;
        border-color: #1e40af;
        box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
    }
    
    .form-group textarea {
        min-height: 120px;
        resize: vertical;
    }
    
    .form-row {
        display: block;
    }
    
    .form-row .form-group {
        width: 100%;
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .checkbox-group,
    .radio-group {
        display: block;
    }
    
    .checkbox-group label,
    .radio-group label {
        display: flex;
        align-items: center;
        margin-bottom: 0.75rem;
        font-size: 1rem;
        cursor: pointer;
    }
    
    .checkbox-group input[type="checkbox"],
    .radio-group input[type="radio"] {
        width: auto;
        margin-right: 0.75rem;
        transform: scale(1.2);
    }
    
    .form-actions {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .form-actions .btn {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
        font-weight: 600;
    }
    
    .form-help {
        font-size: 0.9rem;
        color: #6b7280;
        margin-top: 0.5rem;
        line-height: 1.4;
    }
    
    .form-error {
        color: #ef4444;
        font-size: 0.9rem;
        margin-top: 0.5rem;
    }
    
    .form-success {
        color: #10b981;
        font-size: 0.9rem;
        margin-top: 0.5rem;
    }
    
    .form-group.focused {
        transform: translateY(-2px);
        transition: transform 0.2s ease;
    }
    
    .form-group.focused label {
        color: #1e40af;
    }
}

/* Mobile Animation Classes */
.animate-in {
    /* Disable scroll-in/fade-in animation */
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

/* Mobile Header Scroll Animation */
@media (max-width: 768px) {
    .header {
        transition: transform 0.3s ease;
    }
    
    .header.hidden {
        transform: translateY(-100%);
    }
}

/* Touch-friendly button states */
@media (max-width: 768px) {
    .btn:active,
    .service-card:active,
    .feature-item:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
    
    .nav-link:active {
        background: #f1f5f9;
        transform: scale(0.98);
    }
}

/* Mobile-specific improvements for better performance */
@media (max-width: 768px) {
    .hero-particles,
    .hero-shapes,
    .floating-elements {
        will-change: auto;
    }
    
    .service-card,
    .feature-item {
        will-change: transform;
    }
    
    /* Reduce motion for users who prefer it */
    @media (prefers-reduced-motion: reduce) {
        * {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
        }
    }
}

/* Extra small devices (phones in landscape) */
@media (max-width: 360px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .hero-title {
        font-size: 1.7rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .service-card {
        padding: 1rem;
    }
    
    .service-card h3 {
        font-size: 1.1rem;
    }
    
    .btn-large {
        padding: 0.8rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .dashboard-content {
        height: 180px;
    }
    
    .dashboard-sidebar {
        width: 70px;
    }
    
    .sidebar-item {
        font-size: 0.65rem;
        padding: 0.4rem 0.2rem;
    }
    
    .sidebar-item i {
        font-size: 0.9rem;
    }
    
    .hero-dashboard-mobile {
        margin: 0.5rem auto;
        border-radius: 8px;
    }
    
    .hero-dashboard-mobile .dashboard-content {
        height: 120px;
    }
    
    .hero-dashboard-mobile .dashboard-sidebar {
        width: 45px;
    }
    
    .hero-dashboard-mobile .sidebar-item {
        font-size: 0.5rem;
        padding: 0.15rem 0.05rem;
    }
    
    .hero-dashboard-mobile .sidebar-item i {
        font-size: 0.6rem;
    }
    
    .hero-dashboard-mobile .dashboard-main {
        padding: 0.4rem;
    }
    
    .hero-dashboard-mobile .dashboard-card {
        padding: 0.3rem;
        gap: 0.3rem;
    }
    
    .hero-dashboard-mobile .card-icon {
        width: 18px;
        height: 18px;
    }
    
    .hero-dashboard-mobile .card-title {
        font-size: 0.5rem;
    }
    
    .hero-dashboard-mobile .card-value {
        font-size: 0.65rem;
    }
    
    .hero-dashboard-mobile .dashboard-chart {
        height: 30px;
        padding: 0.25rem;
    }
}

/* Cookie Notice Styles */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    padding: 1rem;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    border-top: 3px solid #60a5fa;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.cookie-text h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.cookie-text p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.cookie-text a {
    color: #93c5fd;
    text-decoration: underline;
}

.cookie-text a:hover {
    color: #dbeafe;
}

.cookie-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.2s ease;
}

/* Verification Badges */
.verification-badges {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.verify-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.verify-badge:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
}

.verify-badge i {
    font-size: 1rem;
}

/* Mobile adjustments for cookie notice */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .cookie-actions {
        justify-content: center;
    }
    
    .verification-badges {
        justify-content: center;
    }
}


/* Remove underline for email and phone links */
a[href^="mailto:"],
a[href^="tel:"],
.whatsapp-link {
    text-decoration: none;
}

a[href^="mailto:"]:hover,
a[href^="tel:"]:hover,
.whatsapp-link:hover {
    text-decoration: none;
}

/* Ensure primary hero button text is visible on white background */
.hero-buttons .btn-primary,
.hero-buttons .btn-primary span,
.hero-buttons .btn-primary i {
    color: #1e40af !important;
}

.hero-buttons .btn-primary:hover,
.hero-buttons .btn-primary:hover span,
.hero-buttons .btn-primary:hover i {
    color: #1e3a8a !important;
}
