* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #2C3E7C;
    --primary-dark: #1f2d5a;
    --primary-light: #3a4f94;
    --accent: #F4C430;
    --accent-dark: #d4a520;
    --accent-light: #ffd54f;
    --background: #ffffff;
    --surface: #f8fafc;
    --text: #1e293b;
    --text-muted: #64748b;
    --border: #e2e8f0;
    --success: #10b981;
}

html, body {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--background);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header Styles - IMPROVED */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    gap: 32px;
}

/* Logo Styles - IMPROVED */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1001;
}

.logo:hover {
    transform: scale(1.02);
}

.logo-image {
    height: 44px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: all 0.3s ease;
}

/* Navigation - IMPROVED */
nav {
    display: flex;
    gap: 40px;
    align-items: center;
}

nav a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

/* Animated underline effect */
nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transition: width 0.3s ease;
}

nav a:hover {
    color: var(--primary);
}

nav a:hover::after {
    width: 100%;
}

/* Active link state */
nav a.active {
    color: var(--primary);
    font-weight: 600;
}

nav a.active::after {
    width: 100%;
    background: var(--accent);
}

/* CTA Button in Nav - IMPROVED */
nav .btn-primary {
    padding: 10px 24px;
    margin-left: 8px;
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(244, 196, 48, 0.25);
}

nav .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(244, 196, 48, 0.4);
}

/* Mobile Menu Button - IMPROVED */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--primary);
    padding: 8px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1001;
}

.mobile-menu-btn:hover {
    color: var(--accent);
    transform: scale(1.1);
}

.mobile-menu-btn:active {
    transform: scale(0.95);
}

.btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background: var(--accent);
    color: var(--primary);
}

.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(244, 196, 48, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* Mobile Menu Button - Hamburger Icon */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1001;
}

.hamburger-icon {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    height: 20px;
}

.hamburger-icon span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active .hamburger-icon span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
    background-color: var(--accent);
}

.mobile-menu-btn.active .hamburger-icon span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
    background-color: var(--accent);
}

/* Show mobile menu button on mobile */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
}

/* Hero Section */
.hero {
    padding: 80px 0 120px;
    background: linear-gradient(135deg, #f8fafc 0%, #e8ecf4 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(44, 62, 124, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(244, 196, 48, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text);
}

.hero h1 .highlight {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 20px;
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.service-badges {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 48px;
}

.service-badge {
    padding: 12px 24px;
    background-color: white;
    border-radius: 50px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--text);
    border: 2px solid transparent;
    transition: all 0.3s;
}

.service-badge:hover {
    border-color: var(--accent);
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    transform: translateY(-2px);
}

.service-badge .icon {
    font-size: 24px;
}

.trusted {
    margin-top: 64px;
    text-align: center;
}

.trusted p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.trusted-logos {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    opacity: 0.6;
}

.trusted-logos span {
    font-size: 18px;
    font-weight: 600;
}

/* Services Section - Complete & Fixed */
.services {
    padding: 100px 0;
    background-color: #ffffff;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 16px;
    color: var(--primary);
}

.section-header h2 .highlight {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 20px;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Service Filter Buttons */
.service-filter {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 64px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 32px;
    border: 2px solid var(--border);
    background: white;
    color: var(--text);
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn:hover {
    border-color: var(--accent);
    background: rgba(244, 196, 48, 0.1);
    color: var(--primary);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    border-color: var(--primary);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Service Cards */
.service-card {
    padding: 48px 40px;
    background: #ffffff;
    border-radius: 24px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(44, 62, 124, 0.15);
    border-color: var(--accent);
}

.service-card:hover::before {
    height: 8px;
    background: var(--accent);
}

/* Service Icon */
.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    font-size: 40px;
    box-shadow: 0 8px 20px rgba(44, 62, 124, 0.2);
    transition: all 0.3s;
}

.service-card:hover .service-icon {
    background: var(--accent);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 28px rgba(244, 196, 48, 0.3);
}

/* Service Titles */
.service-card h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary);
    transition: color 0.3s;
}

.service-card:hover h3 {
    color: var(--accent-dark);
}

/* Service Description */
.service-card > p {
    color: #334155;
    line-height: 1.7;
    margin-bottom: 28px;
    font-size: 16px;
    font-weight: 400;
}

/* Service Subsection */
.service-subsection {
    margin-top: 32px;
    padding-top: 28px;
    border-top: 2px solid rgba(244, 196, 48, 0.3);
}

.service-subsection h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.subsection-icon {
    font-size: 24px;
}

/* Service Features List */
.service-features {
    list-style: none;
    margin-bottom: 28px;
}

.service-features li {
    padding: 12px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #1e293b;
    font-size: 15px;
    line-height: 1.6;
    font-weight: 500;
}

.service-features li::before {
    content: '✓';
    color: var(--accent);
    font-weight: 900;
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Learn More Button */
.service-card .btn {
    width: 100%;
    justify-content: center;
    margin-top: 28px;
    font-weight: 700;
    padding: 14px 24px;
}


/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--surface) 0%, #fff 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.testimonial-card {
    padding: 32px;
    background-color: var(--background);
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.testimonial-card:hover {
    border-color: var(--accent);
    box-shadow: 0 8px 24px rgba(244, 196, 48, 0.25);
    transform: translateY(-4px);
}

.stars {
    color: var(--accent);
    margin-bottom: 16px;
    font-size: 18px;
}

.testimonial-card blockquote {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    transition: all 0.3s;
}

.testimonial-card:hover .author-avatar {
    background: var(--accent);
    color: var(--primary);
}

.author-info h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--primary);
}

.author-info p {
    font-size: 14px;
    color: var(--text-muted);
}

.service-tag {
    display: inline-block;
    padding: 4px 12px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
    transition: all 0.3s;
}

.testimonial-card:hover .service-tag {
    background: var(--accent);
    color: var(--primary);
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background-color: var(--background);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    padding: 40px;
    background-color: var(--surface);
    border-radius: 16px;
    border: 2px solid var(--border);
    position: relative;
    transition: all 0.3s;
}

.pricing-card:hover {
    border-color: var(--accent);
    box-shadow: 0 12px 32px rgba(244, 196, 48, 0.25);
    transform: translateY(-4px);
}

.pricing-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary);
    transition: color 0.3s;
}

.pricing-card:hover h3 {
    color: var(--accent-dark);
}

.pricing-card.popular {
    border-color: var(--accent);
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(244, 196, 48, 0.3);
    background: linear-gradient(135deg, #fff 0%, #fffef7 100%);
}

.pricing-card.popular:hover {
    border-color: var(--accent-dark);
    transform: scale(1.05) translateY(-4px);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: var(--primary);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.price {
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 20px 0;
}

.price span {
    font-size: 18px;
    color: var(--text-muted);
}

.pricing-card p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.features-list {
    list-style: none;
    margin-bottom: 32px;
}

.features-list li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.features-list li::before {
    content: '✓';
    color: var(--accent);
    font-weight: 700;
    font-size: 18px;
}

/* CTA Section - Dynamic & Exciting */
.cta {
    padding: 140px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1f2d5a 0%, var(--primary) 50%, #1a2447 100%);
}

.cta-animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    animation: float-shapes 20s ease-in-out infinite;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(244, 196, 48, 0.15) 0%, transparent 70%);
    top: -10%;
    right: -5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(244, 196, 48, 0.1) 0%, transparent 70%);
    bottom: -10%;
    left: 10%;
    animation-delay: 5s;
}

.shape-3 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(244, 196, 48, 0.08) 0%, transparent 70%);
    top: 50%;
    left: -10%;
    animation-delay: 10s;
}

@keyframes float-shapes {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(30px, -30px) rotate(5deg); }
    50% { transform: translate(-20px, 20px) rotate(-5deg); }
    75% { transform: translate(40px, 10px) rotate(3deg); }
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(244, 196, 48, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(244, 196, 48, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-badge {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(244, 196, 48, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(244, 196, 48, 0.3);
    border-radius: 50px;
    color: var(--accent);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(244, 196, 48, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 0 20px 10px rgba(244, 196, 48, 0); }
}

.cta h2 {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
    color: white;
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.gradient-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    border-radius: 2px;
}

.cta-subtitle {
    font-size: 20px;
    margin-bottom: 48px;
    opacity: 0.9;
    color: white;
}

.cta-subtitle strong {
    color: var(--accent);
    font-weight: 700;
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(244, 196, 48, 0.2);
    min-width: 140px;
    transition: all 0.3s;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--accent);
}

.stat-number {
    font-size: 36px;
    font-weight: 900;
    color: var(--accent);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.cta-form-wrapper {
    margin-bottom: 48px;
}

.cta-form {
    display: flex;
    gap: 12px;
    max-width: 600px;
    margin: 0 auto 16px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(244, 196, 48, 0.2);
    transition: all 0.3s;
}

.cta-form:focus-within {
    border-color: var(--accent);
    box-shadow: 0 0 30px rgba(244, 196, 48, 0.3);
}

.cta-input {
    flex: 1;
    padding: 18px 24px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    transition: all 0.3s;
}

.cta-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.cta-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.2);
}

.btn-cta {
    padding: 18px 36px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    color: var(--primary);
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    box-shadow: 0 8px 24px rgba(244, 196, 48, 0.3);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(244, 196, 48, 0.5);
}

.btn-cta svg {
    transition: transform 0.3s;
}

.btn-cta:hover svg {
    transform: translateX(4px);
}

.form-note {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.cta-divider {
    position: relative;
    margin: 48px 0;
}

.cta-divider::before,
.cta-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 2px;
    background: linear-gradient(to right, transparent, rgba(244, 196, 48, 0.3), transparent);
}

.cta-divider::before { left: 0; }
.cta-divider::after { right: 0; }

.cta-divider span {
    background: rgba(244, 196, 48, 0.15);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    border: 1px solid rgba(244, 196, 48, 0.3);
    color: var(--accent);
}

.cta-call-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 32px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 2px solid rgba(244, 196, 48, 0.2);
    max-width: 500px;
    margin: 0 auto;
    transition: all 0.3s;
}

.cta-call-box:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 12px 40px rgba(244, 196, 48, 0.2);
}

.call-icon-wrapper {
    position: relative;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.call-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.3;
    animation: pulse-call 2s ease-out infinite;
}

@keyframes pulse-call {
    0% { transform: scale(1); opacity: 0.3; }
    100% { transform: scale(1.5); opacity: 0; }
}

.call-icon {
    font-size: 32px;
    position: relative;
    z-index: 1;
}

.call-info {
    text-align: left;
}

.call-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 4px;
}

.call-number {
    font-size: 28px;
    font-weight: 900;
    color: var(--accent);
    text-decoration: none;
    display: block;
    margin-bottom: 4px;
    transition: all 0.3s;
}

.call-number:hover {
    color: var(--accent-light);
}

.call-availability {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

/* Contact Form Section */
.contact {
    padding: 100px 0;
    background-color: var(--surface);
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact form {
    background: white;
    padding: 48px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(244, 196, 48, 0.1);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.contact form .btn-primary {
    width: 100%;
    justify-content: center;
    font-size: 16px;
    padding: 14px;
}

/* Footer - Modern Wave Design */
footer {
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 0;
    position: relative;
}

.footer-wave {
    position: relative;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.footer-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 120px;
}

.wave-path {
    fill: var(--primary);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 64px;
    padding: 80px 0 64px;
}

.footer-brand {
    font-size: 28px;
    font-weight: 900;
    color: var(--accent);
    margin-bottom: 8px;
}

.brand-tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    margin-bottom: 20px;
}

.footer-about p {
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 28px;
}

.footer-awards {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.award-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(244, 196, 48, 0.15);
    border: 1px solid rgba(244, 196, 48, 0.3);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

.badge-icon {
    font-size: 16px;
}

.social-section {
    margin-top: 32px;
}

.social-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--accent);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 48px;
    height: 48px;
    background: rgba(244, 196, 48, 0.15);
    border: 1px solid rgba(244, 196, 48, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
}

.social-link::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--accent);
    transform: scale(0);
    transition: transform 0.3s;
    z-index: 0;
}

.social-link:hover::before {
    transform: scale(1);
}

.social-link svg {
    position: relative;
    z-index: 1;
    transition: all 0.3s;
}

.social-link:hover {
    color: var(--primary);
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(244, 196, 48, 0.4);
}

.footer-section h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 28px;
    color: var(--accent);
    position: relative;
    padding-bottom: 16px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), transparent);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    opacity: 0.85;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 0;
}

.link-icon {
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s;
    color: var(--accent);
}

.footer-links a:hover .link-icon {
    opacity: 1;
    transform: translateX(0);
}

.footer-links a:hover {
    color: var(--accent);
    opacity: 1;
    padding-left: 8px;
}

.badge-new {
    padding: 2px 8px;
    background: #10b981;
    color: white;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    margin-left: auto;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    margin-bottom: 20px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(244, 196, 48, 0.1);
    text-decoration: none;
    color: white;
    transition: all 0.3s;
}

.contact-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent);
    transform: translateX(4px);
}

.contact-icon-wrapper {
    width: 44px;
    height: 44px;
    background: rgba(244, 196, 48, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--accent);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-label {
    font-size: 12px;
    opacity: 0.7;
}

.contact-value {
    font-size: 15px;
    font-weight: 600;
}

.newsletter-mini {
    margin-top: 32px;
    padding: 20px;
    background: rgba(244, 196, 48, 0.1);
    border: 1px solid rgba(244, 196, 48, 0.3);
    border-radius: 12px;
}

.newsletter-label {
    font-size: 14px;
    margin-bottom: 12px;
    font-weight: 600;
}

.newsletter-form {
    display: flex;
    gap: 8px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 14px;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
    width: 40px;
    height: 40px;
    background: var(--accent);
    border: none;
    border-radius: 8px;
    color: var(--primary);
    font-size: 18px;
    font-weight: 900;
    cursor: pointer;
    transition: all 0.3s;
}

.newsletter-form button:hover {
    transform: translateX(2px);
}

.footer-bottom {
    padding: 32px 0;
    border-top: 1px solid rgba(244, 196, 48, 0.2);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    font-size: 14px;
    opacity: 0.8;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: var(--accent);
    opacity: 1;
}

.separator {
    opacity: 0.4;
}

.scroll-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    border: none;
    border-radius: 50%;
    color: var(--primary);
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(244, 196, 48, 0.3);
    transition: all 0.3s;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
}

.scroll-top.visible {
    opacity: 1;
    pointer-events: all;
}

.scroll-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(244, 196, 48, 0.5);
}

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #2C3E7C;
            --primary-dark: #1f2d5a;
            --primary-light: #3a4f94;
            --accent: #F4C430;
            --accent-dark: #d4a520;
            --accent-light: #ffd54f;
            --background: #ffffff;
            --surface: #f8fafc;
            --text: #1e293b;
            --text-muted: #64748b;
            --border: #e2e8f0;
            --success: #10b981;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            color: var(--text);
            background-color: var(--background);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Header Styles */
        header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background-color: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
            transition: all 0.3s ease;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
            gap: 32px;
        }

        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            transition: transform 0.3s ease;
            position: relative;
            z-index: 1001;
        }

        .logo:hover {
            transform: scale(1.02);
        }

        .logo-text {
            font-size: 28px;
            font-weight: 900;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        nav {
            display: flex;
            gap: 40px;
            align-items: center;
        }

        nav a {
            color: var(--text);
            text-decoration: none;
            font-weight: 500;
            font-size: 15px;
            transition: all 0.3s ease;
            position: relative;
            padding: 8px 0;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            transition: width 0.3s ease;
        }

        nav a:hover {
            color: var(--primary);
        }

        nav a:hover::after {
            width: 100%;
        }

        nav a.active {
            color: var(--primary);
            font-weight: 600;
        }

        nav a.active::after {
            width: 100%;
            background: var(--accent);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 28px;
            cursor: pointer;
            color: var(--primary);
            padding: 8px;
            transition: all 0.3s ease;
            position: relative;
            z-index: 1001;
        }


        /* Responsive Design */
        @media (max-width: 768px) {
            .header-content {
                padding: 16px 0;
            }

            .mobile-menu-btn {
                display: block;
            }

            nav {
                position: fixed;
                top: 0;
                height: 100vh;
                width: 280px;
                background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
                box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
                flex-direction: column;
                justify-content: flex-start;
                padding: 100px 32px 32px;
                gap: 24px;
                transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            }

            nav.active {
                right: 0;
            }

            nav a {
                width: 100%;
                padding: 16px 0;
                font-size: 18px;
                color: white;
                border-bottom: 1px solid rgba(244, 196, 48, 0.2);
            }

            .hero-content h1 {
                font-size: 40px;
            }

            .hero-content p {
                font-size: 18px;
            }

            .portfolio-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .filter-controls {
                padding: 0 20px;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 24px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            /* Mobile Modal Adjustments */
            .modal-content {
                width: 95%;
                max-width: 100%;
                max-height: 95vh;
            }

            .modal-nav {
                width: 48px;
                height: 48px;
                font-size: 20px;
            }

            .modal-nav.prev {
                left: 10px;
            }

            .modal-nav.next {
                right: 10px;
            }

            .close-modal {
                width: 44px;
                height: 44px;
                top: 15px;
                right: 15px;
                font-size: 20px;
            }

            .modal-info {
                padding: 20px;
            }

            .modal-info h2 {
                font-size: 20px;
            }

            .modal-info p {
                font-size: 14px;
            }

            .modal-stats {
                gap: 16px;
            }

            .modal-stat-value {
                font-size: 14px;
            }

            .swipe-indicator {
                bottom: 80px;
                gap: 20px;
            }

            .swipe-hint {
                font-size: 12px;
            }

            .swipe-hint svg {
                width: 20px;
                height: 20px;
            }
        }

        @media (max-width: 480px) {
            .hero-content h1 {
                font-size: 32px;
            }

            .hero-content p {
                font-size: 16px;
            }

            .filter-btn {
                padding: 10px 20px;
                font-size: 14px;
            }

            .stat-number {
                font-size: 36px;
            }

            .modal-content {
                width: 98%;
                border-radius: 16px;
            }

            .modal-video-wrapper {
                border-radius: 16px 16px 0 0;
            }

            .modal-info {
                border-radius: 0 0 16px 16px;
                padding: 16px;
            }
        }

        /* Loading Animation */
        .loading {
            display: none;
            text-align: center;
            padding: 40px;
        }

        .loading.active {
            display: block;
        }

        .spinner {
            width: 50px;
            height: 50px;
            border: 4px solid var(--border);
            border-top-color: var(--accent);
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin: 0 auto;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        .no-results {
            text-align: center;
            padding: 80px 20px;
            display: none;
        }

        .no-results.active {
            display: block;
        }

        .no-results h3 {
            font-size: 28px;
            color: var(--text-muted);
            margin-bottom: 16px;
        }

        .no-results p {
            font-size: 16px;
            color: var(--text-muted);
        }

/* ========================================
   UNIVERSAL MOBILE RESPONSIVE STYLES
   Applies to ALL pages
   ======================================== */

/* Base Mobile Container */
@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 32px;
    }
}

@media (max-width: 1024px) {
    .container {
        padding: 0 24px;
    }
}

/* ========================================
   HEADER & NAVIGATION - ALL PAGES
   ======================================== */

@media (max-width: 768px) {
    /* Header */
    header {
        padding: 16px 0;
    }

    .header-content {
        padding: 16px 0;
        gap: 20px;
    }

    .logo-image {
        height: 36px;
        max-width: 150px;
    }

    /* Mobile Menu Button */
    .mobile-menu-btn {
        display: block;
        z-index: 1001;
    }

    nav a {
        width: 100%;
        padding: 16px 0;
        font-size: 18px;
        text-align: left;
        border-bottom: 1px solid rgba(244, 196, 48, 0.2);
        color: white;
    }

    nav a::after {
        background: var(--accent);
    }

    nav a:hover {
        background-color: rgba(244, 196, 48, 0.1);
        padding-left: 8px;
        color: var(--accent);
    }

    nav .btn-primary {
        width: 100%;
        margin-left: 0;
        margin-top: 16px;
        justify-content: center;
        padding: 14px 24px;
        font-size: 16px;
    }

    .mobile-menu-btn.active {
        color: var(--accent);
        transform: rotate(90deg);
    }
}

/* ============================
   MOBILE NAV OVERRIDE (FIX)
   ============================ */
@media (max-width: 768px) {
    nav {
        position: fixed;
        top: 0;
        right: 0;

        width: min(280px, 100vw);
        height: 100vh;

        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;

        padding: 100px 32px 32px;

        background: linear-gradient(
            180deg,
            var(--primary) 0%,
            var(--primary-dark) 100%
        );

        transform: translateX(100%);
        transition: transform 0.35s ease;

        overflow-y: auto;
        overflow-x: hidden;

        z-index: 1000;
    }

    nav.active {
        transform: translateX(0); /* ✅ THIS WAS MISSING */
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.35);
    }

    nav a {
        width: 100%;
        padding: 16px 0;
        font-size: 18px;
        color: white;
        border-bottom: 1px solid rgba(244, 196, 48, 0.2);
    }

    nav a::after {
        background: var(--accent);
    }

    nav .btn-primary {
        width: 100%;
        margin-top: 16px;
        justify-content: center;
    }
}





/* ========================================
   HERO SECTIONS - ALL PAGES
   ======================================== */

@media (max-width: 768px) {
    /* Main Hero (Home Page) */
    .hero {
        padding: 60px 0 80px;
    }

    .hero-content {
        padding: 0 20px;
    }

    .hero h1 {
        font-size: 40px;
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .hero p {
        font-size: 18px;
        margin-bottom: 28px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .service-badges {
        gap: 12px;
    }

    .service-badge {
        padding: 10px 20px;
        font-size: 14px;
    }

    /* Services Hero */
    .services-hero {
        padding: 60px 0 80px;
    }

    .services-hero-content {
        padding: 0 20px;
    }

    .services-hero h1 {
        font-size: 40px;
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .services-hero p {
        font-size: 18px;
        margin-bottom: 32px;
    }

    /* About Hero */
    .about-hero {
        padding: 60px 0 80px;
    }

    .about-hero h1 {
        font-size: 40px;
    }

    .about-hero p {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .hero h1,
    .services-hero h1,
    .about-hero h1 {
        font-size: 32px;
    }

    .hero p,
    .services-hero p,
    .about-hero p {
        font-size: 16px;
    }
}

/* ========================================
   SECTION HEADERS - ALL PAGES
   ======================================== */

@media (max-width: 768px) {
    .section-header {
        padding: 0 20px;
        margin-bottom: 48px;
    }

    .section-header h2 {
        font-size: 36px;
        line-height: 1.2;
    }

    .section-header p {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 30px;
    }

    .section-header p {
        font-size: 16px;
    }
}

/* ========================================
   SERVICES SECTION - ALL PAGES
   ======================================== */

@media (max-width: 768px) {
    /* Service Filter */
    .service-filter {
        margin: 48px 0 60px;
        padding: 0 20px;
        gap: 12px;
    }

    .filter-btn {
        padding: 12px 24px;
        font-size: 15px;
    }

    /* Services Grid */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 0 20px;
    }

    /* Service Cards */
    .service-card {
        padding: 32px 24px;
    }

    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 35px;
    }

    .service-card h3 {
        font-size: 24px;
    }

    .service-card > p {
        font-size: 16px;
    }

    .service-subsection h4 {
        font-size: 18px;
    }

    .service-features li {
        font-size: 15px;
    }

    .service-subcategories {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .service-card {
        padding: 28px 20px;
    }

    .service-card h3 {
        font-size: 22px;
    }

    .filter-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* ========================================
   TESTIMONIALS SECTION - ALL PAGES
   ======================================== */

@media (max-width: 768px) {
    .testimonials {
        padding: 80px 0;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0 20px;
    }

    .testimonial-card {
        padding: 28px 24px;
    }

    .testimonial-card blockquote {
        font-size: 15px;
    }

    .author-info h4 {
        font-size: 15px;
    }

    .author-info p {
        font-size: 13px;
    }
}

/* ========================================
   PRICING SECTION - ALL PAGES
   ======================================== */

@media (max-width: 768px) {
    .pricing {
        padding: 80px 0;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 0 20px;
    }

    .pricing-card {
        padding: 32px 24px;
    }

    .pricing-card h3 {
        font-size: 22px;
    }

    .price {
        font-size: 40px;
    }

    .price span {
        font-size: 16px;
    }

    .features-list li {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .pricing-card {
        padding: 28px 20px;
    }

    .price {
        font-size: 36px;
    }
}

/* ========================================
   STATS SECTION - ALL PAGES
   ======================================== */

@media (max-width: 768px) {
    .stats-section {
        padding: 80px 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
        padding: 0 20px;
    }

    .stat-item {
        padding: 24px 18px;
    }

    .stat-number {
        font-size: 44px;
    }

    .stat-label {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .stat-number {
        font-size: 40px;
    }
}

/* ========================================
   PROCESS SECTION - ALL PAGES
   ======================================== */

@media (max-width: 768px) {
    .process-section {
        padding: 80px 0;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 0 20px;
    }

    .process-step {
        padding: 60px 28px 32px;
    }

    .step-number {
        width: 52px;
        height: 52px;
        font-size: 22px;
        top: -26px;
    }

    .process-step h3 {
        font-size: 20px;
    }

    .process-step p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .process-step {
        padding: 56px 22px 28px;
    }

    .step-number {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .process-step h3 {
        font-size: 18px;
    }

    .process-step p {
        font-size: 15px;
    }
}

/* ========================================
   FAQ SECTION - ALL PAGES
   ======================================== */

@media (max-width: 768px) {
    .faq-section {
        padding: 80px 0;
    }

    .faq-list {
        padding: 0 20px;
    }

    .faq-item {
        margin-bottom: 16px;
    }

    .faq-question {
        padding: 20px 20px;
        font-size: 17px;
        gap: 12px;
    }

    .faq-toggle {
        font-size: 24px;
    }

    .faq-answer-content {
        padding: 0 20px 20px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .faq-question {
        padding: 18px 16px;
        font-size: 16px;
    }

    .faq-answer-content {
        padding: 0 16px 18px;
        font-size: 14px;
    }
}

/* ========================================
   CTA SECTION - ALL PAGES
   ======================================== */

@media (max-width: 768px) {
    .cta {
        padding: 80px 0;
    }

    .cta-content {
        padding: 0 20px;
    }

    .cta h2 {
        font-size: 36px;
    }

    .cta p,
    .cta-subtitle {
        font-size: 18px;
    }

    .cta-stats {
        gap: 24px;
    }

    .cta-form {
        flex-direction: column;
        padding: 12px;
    }

    .cta-input {
        padding: 16px 20px;
        font-size: 15px;
    }

    .btn-cta {
        width: 100%;
        justify-content: center;
        padding: 16px 32px;
        font-size: 15px;
    }

    .cta-call-box {
        flex-direction: column;
        text-align: center;
        padding: 28px 24px;
    }

    .call-info {
        text-align: center;
    }

    .call-number {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .cta h2 {
        font-size: 30px;
    }

    .cta p,
    .cta-subtitle {
        font-size: 16px;
    }

    .cta-call-box {
        padding: 24px 20px;
    }

    .call-number {
        font-size: 22px;
    }
}

/* ========================================
   CONTACT FORM - ALL PAGES
   ======================================== */

@media (max-width: 768px) {
    .contact {
        padding: 80px 0;
    }

    .contact-content {
        padding: 0 20px;
    }

    .contact form {
        padding: 36px 24px;
    }

    .form-group label {
        font-size: 15px;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 12px 14px;
        font-size: 15px;
    }

    .contact form .btn-primary {
        padding: 14px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .contact form {
        padding: 32px 20px;
    }
}

/* ========================================
   FOOTER - ALL PAGES
   ======================================== */

@media (max-width: 768px) {
    .footer-wave svg {
        height: 80px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 60px 0 48px;
    }

    .footer-brand {
        font-size: 24px;
    }

    .footer-about p {
        font-size: 15px;
    }

    .footer-section h3 {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .footer-links a {
        font-size: 14px;
    }

    .social-links {
        gap: 10px;
    }

    .social-link {
        width: 44px;
        height: 44px;
    }

    .contact-link {
        padding: 14px;
    }

    .contact-icon-wrapper {
        width: 40px;
        height: 40px;
    }

    .contact-value {
        font-size: 14px;
    }

    .footer-bottom {
        padding: 28px 0;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .copyright {
        font-size: 13px;
    }

    .footer-links a {
        font-size: 13px;
    }
}

/* ========================================
   BUTTONS & INTERACTIVE ELEMENTS
   ======================================== */

@media (max-width: 768px) {
    .btn {
        padding: 14px 24px;
        font-size: 15px;
    }

    .scroll-top,
    .back-to-top {
        bottom: 24px;
        right: 24px;
        width: 52px;
        height: 52px;
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .btn {
        padding: 13px 20px;
        font-size: 14px;
    }

    .scroll-top,
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
}

/* ========================================
   ABOUT PAGE SPECIFIC
   ======================================== */

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 0 20px;
    }

    .team-member {
        padding: 24px;
    }

    .team-member h3 {
        font-size: 20px;
    }

    .team-member p {
        font-size: 15px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 0 20px;
    }

    .value-item {
        padding: 28px 24px;
    }
}

/* ========================================
   TABLET RESPONSIVE (768px - 1024px)
   ======================================== */

@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        padding: 0 32px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ========================================
   LANDSCAPE ORIENTATION
   ======================================== */

@media (max-width: 768px) and (orientation: landscape) {
    .hero,
    .services-hero,
    .about-hero {
        padding: 50px 0 60px;
    }

    .hero h1,
    .services-hero h1 {
        font-size: 36px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ========================================
   UTILITY CLASSES FOR MOBILE
   ======================================== */

@media (max-width: 768px) {
    .hide-mobile {
        display: none !important;
    }

    .show-mobile {
        display: block !important;
    }

    .text-center-mobile {
        text-align: center !important;
    }

    .full-width-mobile {
        width: 100% !important;
    }
}

/* PROJECT HERO */
.projects-hero {
    padding: 80px 0 100px;
    background: linear-gradient(135deg, #f8fafc, #e8ecf4);
    text-align: center;
}

.projects-hero h1 {
    font-size: 56px;
    font-weight: 900;
}

.projects-hero p {
    font-size: 20px;
    color: var(--text-muted);
}

/* FILTER */
.project-filter-wrapper {
    padding: 40px 0;
    background: var(--surface);
}

.project-filter {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Same button styling as services filter */
.project-filter .filter-btn {
    padding: 12px 28px;
    border-radius: 50px;
    border: 2px solid var(--border);
    background: white;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.project-filter .filter-btn.active,
.project-filter .filter-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* PROJECT GRID */
.projects-section {
    padding: 80px 0;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.project-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid var(--border);
    transition: 0.3s;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}

.project-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.project-image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.project-content {
    padding: 24px 28px;
}

.project-content h3 {
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 10px;
}

.project-content p {
    color: var(--text-muted);
    margin-bottom: 16px;
}

/* HIDE on filter */
.project-card.hide {
    display: none;
}

body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}