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

:root {
    --primary-color: #0f1419;
    --primary-dark: #000000;
    --secondary-color: #1e3a8a;
    --accent-color: #d4af37;
    --text-primary: #ffffff;
    --text-secondary: #e5e5e5;
    --text-light: #b3b3b3;
    --text-dark: #1a1a1a;
    --text-dark-secondary: #2d3748;
    --bg-primary: #000000;
    --bg-secondary: #0f1419;
    --bg-dark: #000000;
    --bg-gradient: linear-gradient(135deg, #000000 0%, #0f1419 50%, #1e3a8a 100%);
    --charcoal: #0f1419;
    --dark-gray: #1a1a1a;
    --navy-blue: #1e3a8a;
    --light-navy: #3b82f6;
    --gold: #d4af37;
    --silver: #c0c0c0;
    --pure-white: #ffffff;
    --off-white: #f8fafc;
    --cream-white: #f1f5f9;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.3);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.4), 0 2px 4px -2px rgb(0 0 0 / 0.3);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.5), 0 4px 6px -4px rgb(0 0 0 / 0.4);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.6), 0 8px 10px -6px rgb(0 0 0 / 0.5);
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(30, 58, 138, 0.08) 0%, transparent 50%);
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    z-index: 1000;
    transition: var(--transition);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    height: 56px;
    width: auto;
    border-radius: 0;
    box-shadow: none;
    transition: none;
    display: block;
}

.logo-img:hover {
    transform: none;
    box-shadow: none;
}

@media (max-width: 768px) {
    .logo-img {
        height: 44px;
    }
}

.nav-logo h2 {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(45deg, #d4af37, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--gold);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

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

.cta-button {
    background: linear-gradient(135deg, var(--gold), #b8941f);
    color: var(--primary-dark);
    padding: 12px 24px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.cta-button:hover {
    background: linear-gradient(135deg, #b8941f, var(--gold));
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), 0 0 20px rgba(212, 175, 55, 0.3);
}

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

.bar {
    width: 25px;
    height: 3px;
    background: var(--gold);
    margin: 3px 0;
    transition: var(--transition);
    box-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
}

/* Sticky CTA Button */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    animation: pulse 2s infinite;
}

.sticky-cta-btn {
    background: linear-gradient(135deg, var(--gold), #e6a832);
    color: var(--primary-dark);
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    transition: var(--transition);
    border: none;
    outline: none;
}

.sticky-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.6);
    background: linear-gradient(135deg, #e6a832, var(--gold));
}

.sticky-cta-btn i {
    font-size: 1rem;
}

@keyframes pulse {
    0% {
        box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    }
    50% {
        box-shadow: 0 8px 25px rgba(212, 175, 55, 0.8);
    }
    100% {
        box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    }
}

@media (max-width: 768px) {
    .sticky-cta {
        bottom: 15px;
        left: 15px;
    }
    
    .sticky-cta-btn {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    
    .sticky-cta-btn span {
        display: none;
    }
    
    .sticky-cta-btn i {
        font-size: 1.2rem;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #000000 0%, #0f1419 50%, #1e3a8a 100%);
    overflow: hidden;
    padding-top: 80px; /* Account for fixed navbar */
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: white;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(45deg, #d4af37, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--gold), #b8941f);
    color: var(--primary-dark);
    padding: 16px 32px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl), 0 0 30px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, #b8941f, var(--gold));
}

.btn-secondary {
    background: transparent;
    color: var(--gold);
    padding: 16px 32px;
    border: 2px solid var(--gold);
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--primary-dark);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: white;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Floating Cards */
.hero-visual {
    position: relative;
    height: 400px;
}

.floating-cards {
    position: relative;
    width: 100%;
    height: 100%;
}

.card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-weight: 600;
    animation: float 6s ease-in-out infinite;
}

.card i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.card-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 10%;
    right: 20%;
    animation-delay: 1.5s;
}

.card-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 3s;
}

.card-4 {
    bottom: 20%;
    right: 10%;
    animation-delay: 4.5s;
}

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

/* Background Orbs */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    animation: orbFloat 20s ease-in-out infinite;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, #d4af37, #b8941f);
    top: 20%;
    left: -10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, #3b82f6, #1e3a8a);
    top: 60%;
    right: -5%;
    animation-delay: 7s;
}

.orb-3 {
    width: 250px;
    height: 250px;
    background: linear-gradient(45deg, #0f1419, #000000);
    bottom: 20%;
    left: 30%;
    animation-delay: 14s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-dark-secondary);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 500;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: var(--off-white);
    margin-top: 80px; /* Account for fixed navbar */
}

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

.service-card {
    background: var(--pure-white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(30, 58, 138, 0.15);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.service-card.featured {
    border: 2px solid var(--navy-blue);
    transform: scale(1.05);
    background: linear-gradient(135deg, var(--cream-white) 0%, #ffffff 100%);
    box-shadow: 0 12px 35px rgba(30, 58, 138, 0.15), 0 0 30px rgba(30, 58, 138, 0.1);
}

.service-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--navy-blue);
    color: var(--pure-white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 700;
    box-shadow: 0 0 15px rgba(30, 58, 138, 0.4);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--navy-blue), var(--light-navy));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 20px rgba(30, 58, 138, 0.3);
}

.service-icon i {
    font-size: 2rem;
    color: var(--pure-white);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-dark-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-weight: 500;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-dark-secondary);
    position: relative;
    padding-left: 1.5rem;
    font-weight: 500;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--navy-blue);
    font-weight: bold;
    text-shadow: 0 0 10px rgba(30, 58, 138, 0.5);
}

.platform-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin: 1rem 0;
    padding: 0.75rem;
    background: rgba(30, 58, 138, 0.05);
    border-radius: var(--border-radius);
    border: 1px solid rgba(30, 58, 138, 0.1);
}

.platform-logos img {
    height: 32px;
    width: auto;
    opacity: 0.8;
    transition: var(--transition);
    filter: grayscale(20%);
}

.platform-logos img:hover {
    opacity: 1;
    transform: scale(1.1);
    filter: grayscale(0%);
}

.service-timeline {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dark-secondary);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.service-btn {
    background: linear-gradient(135deg, var(--navy-blue), var(--light-navy));
    color: var(--pure-white);
    padding: 12px 24px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: var(--transition);
    width: 100%;
    text-align: center;
    box-shadow: 0 0 15px rgba(30, 58, 138, 0.3);
}

.service-btn:hover {
    background: linear-gradient(135deg, var(--light-navy), var(--navy-blue));
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(30, 58, 138, 0.5);
}

/* Reviews Section */
.reviews {
    padding: 6rem 0;
    background: var(--charcoal);
    margin-top: 80px; /* Account for fixed navbar */
}

.reviews .section-title {
    color: var(--gold);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.reviews .section-subtitle {
    color: var(--text-secondary);
}

.reviews-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--pure-white);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(30, 58, 138, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

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

.stars {
    display: flex;
    gap: 0.25rem;
}

.stars i {
    color: #fbbf24;
    font-size: 1.25rem;
}

.rating-text {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
}

.write-review-btn {
    background: var(--navy-blue);
    color: var(--pure-white);
    padding: 12px 24px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    box-shadow: 0 0 15px rgba(30, 58, 138, 0.3);
}

.write-review-btn:hover {
    background: var(--light-navy);
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(30, 58, 138, 0.5);
}

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

.reviews-marquee {
    overflow: hidden;
    position: relative;
}

.reviews-marquee::before,
.reviews-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.reviews-marquee::before {
    left: 0;
    background: linear-gradient(90deg, var(--charcoal), rgba(15,20,25,0));
}

.reviews-marquee::after {
    right: 0;
    background: linear-gradient(270deg, var(--charcoal), rgba(15,20,25,0));
}

.marquee-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    animation: marqueeScroll 35s linear infinite;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.review-card {
    min-width: 200px;
    max-width: 250px;
}

@media (max-width: 768px) {
    .review-card { min-width: 180px; max-width: 220px; }
}

.review-card {
    background: var(--pure-white);
    padding: 1.25rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(30, 58, 138, 0.1);
    transition: var(--transition);
    height: auto;
    max-height: 320px;
    overflow: hidden;
    position: relative;
}

.review-card.expanded {
    max-height: none;
    overflow: visible;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.reviewer-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
}

.reviewer-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.reviewer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviewer-details h4 {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

.review-date {
    font-size: 0.75rem;
    color: var(--text-dark-secondary);
    font-weight: 500;
}

.review-badge {
    background: var(--navy-blue);
    color: var(--pure-white);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    box-shadow: 0 0 10px rgba(30, 58, 138, 0.3);
}

.review-rating {
    display: flex;
    gap: 0.2rem;
    margin-bottom: 0.5rem;
}

.review-rating i {
    color: #fbbf24;
    font-size: 0.9rem;
}

.review-text {
    color: var(--text-dark-secondary);
    line-height: 1.4;
    margin-bottom: 0.75rem;
    font-style: italic;
    font-weight: 500;
    font-size: 0.85rem;
    position: relative;
}

.review-text.truncated {
    max-height: 4.5rem;
    overflow: hidden;
}

.review-text.truncated::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2rem;
    background: linear-gradient(transparent, var(--pure-white));
    pointer-events: none;
}

.review-proof {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: var(--off-white);
    border-radius: var(--border-radius);
}

.review-proof img {
    width: 60px;
    height: 40px;
    border-radius: 6px;
    object-fit: cover;
}

.review-proof span {
    font-size: 0.875rem;
    color: var(--text-dark-secondary);
    font-weight: 600;
}

/* Service details at bottom */
.review-service-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-top: 0.75rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.service-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
}

.service-detail-label {
    color: var(--text-dark-secondary);
    font-weight: 500;
}

.service-detail-value {
    color: var(--text-dark);
    font-weight: 700;
}

/* See more functionality */

.see-more-btn {
    background: none;
    border: none;
    color: var(--navy-blue);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0.25rem 0;
    margin-top: 0.5rem;
    transition: var(--transition);
}

.see-more-btn:hover {
    color: var(--gold);
}

.see-more-btn.hidden {
    display: none;
}

/* Guarantee Section */
.guarantee {
    padding: 6rem 0;
    background: linear-gradient(135deg, #000000 0%, #0f1419 50%, #1e3a8a 100%);
    color: white;
    margin-top: 80px; /* Account for fixed navbar */
}

.guarantee-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.guarantee h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.guarantee p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.guarantee-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
}

.guarantee-item i {
    font-size: 1.5rem;
    color: var(--gold);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

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

.guarantee-badge {
    background: linear-gradient(135deg, var(--gold), #b8941f);
    padding: 2rem;
    border-radius: 50%;
    text-align: center;
    box-shadow: var(--shadow-xl), 0 0 40px rgba(212, 175, 55, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

.guarantee-badge i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    color: var(--primary-dark);
}

.guarantee-badge span {
    font-weight: 700;
    font-size: 0.875rem;
    line-height: 1.4;
    color: var(--primary-dark);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: var(--off-white);
    margin-top: 80px; /* Account for fixed navbar */
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-info p {
    color: var(--text-dark-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-weight: 500;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-dark-secondary);
    font-weight: 500;
}

.contact-item i {
    color: var(--gold);
    font-size: 1.25rem;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.contact-form {
    background: var(--pure-white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(30, 58, 138, 0.2);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(30, 58, 138, 0.2);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--off-white);
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--navy-blue);
    background: var(--pure-white);
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.2), 0 0 20px rgba(30, 58, 138, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: var(--primary-dark);
    color: white;
    padding: 4rem 0 2rem;
    margin-top: 80px; /* Account for fixed navbar */
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    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: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: white;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.email-capture {
    background: linear-gradient(135deg, var(--navy-blue), var(--light-navy));
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    margin: 2rem 0;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.email-capture-content h3 {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.email-capture-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.email-form {
    max-width: 500px;
    margin: 0 auto;
}

.email-input-group {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.email-input-group input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--border-radius);
    background: var(--charcoal);
    color: var(--text-primary);
    font-size: 1rem;
    transition: var(--transition);
}

.email-input-group input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.email-submit-btn {
    background: var(--gold);
    color: var(--primary-dark);
    border: none;
    padding: 12px 20px;
    border-radius: var(--border-radius);
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.email-submit-btn:hover {
    background: #e6a832;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.email-privacy {
    color: var(--text-light);
    font-size: 0.875rem;
    margin: 0;
}

@media (max-width: 768px) {
    .email-capture {
        padding: 2rem 1.5rem;
    }
    
    .email-input-group {
        flex-direction: column;
    }
    
    .email-submit-btn {
        justify-content: center;
    }
}

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

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

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

/* Chat Access Button */
.chat-access {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    animation: pulse 2s infinite;
}

.chat-access-btn {
    background: linear-gradient(135deg, var(--gold), #e6a832);
    color: var(--primary-dark);
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    transition: var(--transition);
    border: none;
    outline: none;
}

.chat-access-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.6);
    background: linear-gradient(135deg, #e6a832, var(--gold));
}

.chat-access-btn i {
    font-size: 1rem;
}

@keyframes pulse {
    0% {
        box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    }
    50% {
        box-shadow: 0 8px 25px rgba(212, 175, 55, 0.8);
    }
    100% {
        box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    }
}

@media (max-width: 768px) {
    .chat-access {
        bottom: 15px;
        right: 15px;
    }
    
    .chat-access-btn {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    
    .chat-access-btn span {
        display: none;
    }
    
    .chat-access-btn i {
        font-size: 1.2rem;
    }
}

/* Hide mobile CTA on desktop */
.mobile-cta {
    display: none;
}

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

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: var(--primary-dark);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 1.5rem 0;
        border-top: 1px solid rgba(212, 175, 55, 0.3);
        height: auto;
        max-height: 50vh;
        overflow-y: auto;
    }

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

    .nav-menu li {
        margin: 1rem 0;
    }

    .nav-menu .nav-link {
        color: var(--text-secondary);
        font-size: 1.1rem;
        padding: 0.5rem 0;
    }

    .nav-menu .nav-link:hover {
        color: var(--gold);
    }

    .nav-cta {
        display: none;
    }

    .mobile-cta {
        display: block;
    }

    .nav-menu .cta-button {
        margin-top: 1rem;
        display: inline-block;
        background: var(--gold);
        color: var(--primary-dark);
        padding: 12px 24px;
        border-radius: var(--border-radius);
        text-decoration: none;
        font-weight: 700;
        transition: var(--transition);
        box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
    }

    .nav-menu .cta-button:hover {
        background: #b8941f;
        transform: translateY(-2px);
        box-shadow: 0 0 25px rgba(212, 175, 55, 0.5);
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

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

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        justify-content: center;
    }

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

    .service-card.featured {
        transform: none;
    }

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

    .reviews-summary {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .guarantee-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

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

    .chat-window {
        width: 300px;
        right: -50px;
    }
}

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

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

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

    .service-card,
    .review-card,
    .contact-form {
        padding: 1.5rem;
    }

    .chat-window {
        width: 280px;
        right: -30px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

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

/* Loading states */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Modal buttons for service request (homepage) */
.modal-buttons {
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
    margin-top: 0.5rem;
}

.modal-btn {
    padding: 0.75rem 1.25rem;
    border-radius: var(--border-radius);
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid rgba(212, 175, 55, 0.4);
}

.modal-btn.primary {
    background: linear-gradient(135deg, var(--gold), #b8941f);
    color: var(--primary-dark);
    box-shadow: 0 6px 18px rgba(212, 175, 55, 0.35);
}

.modal-btn.primary:hover {
    background: linear-gradient(135deg, #b8941f, var(--gold));
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(212, 175, 55, 0.45);
}

.modal-btn.secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    border: 1px solid rgba(212, 175, 55, 0.35);
}

.modal-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

/* Focus states for accessibility */
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Footer Logo Styling */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 35px;
    width: auto;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(212, 175, 55, 0.3);
    transition: var(--transition);
}

.footer-logo-img:hover {
    transform: scale(1.05);
    box-shadow: 0 3px 10px rgba(212, 175, 55, 0.5);
}

.footer-section h3 {
    color: var(--gold);
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
}

/* Print styles */
@media print {
    .navbar,
    .live-chat,
    .hero-bg {
        display: none;
    }
    
    .hero {
        background: white;
        color: black;
    }
    
    .hero-title,
    .hero-description {
        color: black;
    }
}
