/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Responsive Typography */
html {
    font-size: 16px;
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
}

@media (max-width: 320px) {
    html {
        font-size: 13px;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: #fff;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 30px rgba(0,0,0,0.15);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo h2 {
    color: #2563eb;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: -5px;
}

.nav-logo span {
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 500;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #64748b;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #2563eb;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #2563eb;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 8px;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
    padding: 10px 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Mobile dropdown styles */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f8fafc;
        border-radius: 0;
        margin-top: 0.5rem;
        padding: 0;
    }
    
    .dropdown-menu li {
        margin: 0;
    }
    
    .dropdown-menu a {
        padding: 10px 20px;
        border-bottom: 1px solid #e5e7eb;
    }
    
    .dropdown-menu a:hover {
        background: #e5e7eb;
        padding-left: 20px;
    }
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: #64748b;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    background: #f8fafc;
    color: #2563eb;
    padding-left: 25px;
}

.cta-button {
    background: #2563eb;
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.highlight {
    color: #fbbf24;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn {
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: #fbbf24;
    color: #1f2937;
}

.btn-primary:hover {
    background: #f59e0b;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(251, 191, 36, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: #667eea;
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #fbbf24;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.hero-image {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    min-height: 400px;
    padding-left: 2rem;
}

.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 450px;
    height: 350px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0,0,0,0.3);
    border: 2px solid rgba(255,255,255,0.1);
}

.hero-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    transition: all 0.4s ease;
    opacity: 1;
    display: block;
    position: relative;
    z-index: 1;
}

.hero-main-image:hover {
    transform: scale(1.02);
}

/* Fallback if image doesn't load */
.hero-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    z-index: -1;
}

/* Analytics Dashboard Styles */
.hero-visual-content {
    width: 100%;
    height: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.analytics-dashboard {
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    padding: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.dashboard-header h4 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.dashboard-stats {
    display: flex;
    gap: 10px;
}

.stat-item {
    background: rgba(37, 99, 235, 0.2);
    color: #60a5fa;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(37, 99, 235, 0.3);
}

.dashboard-charts {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 20px 0;
}

.chart-container {
    display: flex;
    align-items: end;
    gap: 8px;
    height: 80px;
    width: 100%;
    justify-content: center;
}

.chart-bar {
    width: 12px;
    background: linear-gradient(to top, #3b82f6, #60a5fa);
    border-radius: 6px 6px 0 0;
    animation: growUp 2s ease-out;
    position: relative;
}

.chart-bar::after {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: #fbbf24;
    border-radius: 1px;
}

@keyframes growUp {
    from { height: 0; }
    to { height: var(--final-height, 100%); }
}

.chart-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.line-point {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #fbbf24;
    border-radius: 50%;
    border: 2px solid #1a1a2e;
    animation: pulse 2s infinite;
}

.line-point::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: rgba(251, 191, 36, 0.3);
    border-radius: 50%;
    animation: ripple 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

@keyframes ripple {
    0% { transform: translate(-50%, -50%) scale(0); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(2); opacity: 0; }
}

.dashboard-metrics {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 20px;
}

.metric {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.05);
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    flex: 1;
}

.metric i {
    color: #fbbf24;
    font-size: 0.9rem;
}

.metric span {
    color: #fff;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Loading animation */
@keyframes fadeInImage {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Ensure image is visible */
.hero-main-image:not([src]) {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-main-image:not([src])::after {
    content: '📊';
    font-size: 4rem;
    color: white;
}

/* Fallback content styles */
.hero-image-fallback {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.fallback-content {
    text-align: center;
    color: white;
}

.fallback-content i {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #fbbf24;
}

.fallback-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.fallback-content p {
    font-size: 1rem;
    opacity: 0.9;
}

/* Loading state */
.hero-main-image.loading {
    opacity: 0.7;
    filter: blur(2px);
}

.hero-main-image.loaded {
    opacity: 1;
    animation: fadeInImage 0.6s ease-out;
}

.hero-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.floating-card {
    position: absolute;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(15px);
    border-radius: 15px;
    padding: 15px 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: float 3s ease-in-out infinite;
    min-width: 120px;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.floating-card i {
    font-size: 1.5rem;
    color: #2563eb;
}

.floating-card span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1f2937;
}

.floating-card:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    background: rgba(255,255,255,1);
}

.card-1 {
    top: 15%;
    right: -8%;
    animation-delay: 0s;
}

.card-2 {
    bottom: 25%;
    left: -12%;
    animation-delay: 1s;
}

.card-3 {
    top: 55%;
    right: -3%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Services Overview */
.services-overview {
    padding: 80px 0;
    background: #f8fafc;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover,
.service-card.hovered {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: #fff;
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.service-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 1rem;
}

.service-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: #1d4ed8;
}

/* Why Choose Us */
.why-choose-us {
    padding: 80px 0;
    background: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: #1f2937;
}

.feature h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.feature p {
    color: #64748b;
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 80px 0;
    background: #f8fafc;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.about-stat {
    text-align: center;
}

.about-stat .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #2563eb;
}

.about-stat .stat-label {
    font-size: 0.9rem;
    color: #64748b;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-graphic {
    position: relative;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.about-graphic i {
    font-size: 3rem;
    color: #fff;
    animation: pulse 2s ease-in-out infinite;
}

.about-graphic i:nth-child(2) {
    animation-delay: 0.5s;
}

.about-graphic i:nth-child(3) {
    animation-delay: 1s;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #1f2937;
    color: #fff;
}

/* Contact Links */
.contact-link {
    color: #60a5fa;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.contact-link:hover {
    color: #93c5fd;
    border-bottom-color: #93c5fd;
    text-decoration: none;
}

.contact-link:focus {
    outline: 2px solid #60a5fa;
    outline-offset: 2px;
    border-radius: 4px;
}

/* Contact Social Media Section */
.contact-social {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.contact-social h4 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.contact-social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.contact-social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.contact-social-link:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
    text-decoration: none;
    color: #fff;
}

.contact-social-link i {
    font-size: 1.2rem;
}

.contact-social-link span {
    font-size: 0.9rem;
    font-weight: 500;
}

.contact .section-header h2 {
    color: #fff;
}

.contact .section-header p {
    color: #d1d5db;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-form {
    background: #374151;
    padding: 2rem;
    border-radius: 12px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #4b5563;
    border-radius: 6px;
    background: #1f2937;
    color: #fff;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.contact-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #d1d5db;
}

/* Locations Section */
.locations-section {
    padding: 80px 0;
    background: #f8fafc;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.location-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    border: 1px solid #e5e7eb;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.location-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.location-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.location-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.location-address,
.location-phone,
.location-email {
    color: #64748b;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.location-phone {
    font-weight: 600;
    color: #2563eb;
}

.location-email {
    color: #059669;
}

.location-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #e5e7eb;
    color: #374151;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.location-badge.primary {
    background: #2563eb;
    color: #fff;
}

/* Contact links in locations section */
.locations-section .contact-link {
    color: #2563eb;
}

.locations-section .contact-link:hover {
    color: #1d4ed8;
    border-bottom-color: #1d4ed8;
}

/* WhatsApp specific styling */
.contact-link[href*="wa.me"] {
    color: #25d366 !important;
}

.contact-link[href*="wa.me"]:hover {
    color: #128c7e !important;
    border-bottom-color: #128c7e !important;
}

.location-whatsapp .contact-link {
    color: #25d366 !important;
}

.location-whatsapp .contact-link:hover {
    color: #128c7e !important;
    border-bottom-color: #128c7e !important;
}

/* Footer */
.footer {
    background: #111827;
    color: #d1d5db;
    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,
.footer-section h4 {
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.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: #2563eb;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #374151;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d1d5db;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #2563eb;
    color: #fff;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
}

/* Service Page Specific Styles */
.service-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 120px 0 80px;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.service-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-hero-text h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.service-hero-text h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #fbbf24;
    margin-bottom: 1.5rem;
}

.service-hero-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.service-hero-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-item i {
    color: #fbbf24;
    font-size: 1rem;
}

.service-hero-buttons {
    display: flex;
    gap: 1rem;
}

.service-hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.seo-graphic,
.website-graphic,
.email-graphic,
.google-ads-graphic,
.social-ads-graphic,
.lead-gen-graphic,
.ppc-graphic,
.influencer-graphic,
.pr-graphic,
.backlink-graphic {
    position: relative;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
}

.seo-graphic i,
.website-graphic i,
.email-graphic i,
.google-ads-graphic i,
.social-ads-graphic i,
.lead-gen-graphic i,
.ppc-graphic i,
.influencer-graphic i,
.pr-graphic i,
.backlink-graphic i {
    font-size: 3rem;
    margin: 20px;
    color: #fbbf24;
    animation: float 3s ease-in-out infinite;
}

.seo-graphic i:nth-child(2),
.website-graphic i:nth-child(2),
.email-graphic i:nth-child(2),
.google-ads-graphic i:nth-child(2),
.social-ads-graphic i:nth-child(2),
.lead-gen-graphic i:nth-child(2),
.ppc-graphic i:nth-child(2),
.influencer-graphic i:nth-child(2),
.pr-graphic i:nth-child(2),
.backlink-graphic i:nth-child(2) {
    animation-delay: 0.5s;
}

.seo-graphic i:nth-child(3),
.website-graphic i:nth-child(3),
.email-graphic i:nth-child(3),
.google-ads-graphic i:nth-child(3),
.social-ads-graphic i:nth-child(3),
.lead-gen-graphic i:nth-child(3),
.ppc-graphic i:nth-child(3),
.influencer-graphic i:nth-child(3),
.pr-graphic i:nth-child(3),
.backlink-graphic i:nth-child(3) {
    animation-delay: 1s;
}

.service-details {
    padding: 80px 0;
    background: #f8fafc;
}

.service-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-feature {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.service-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.service-feature .feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-feature .feature-icon i {
    font-size: 2rem;
    color: #fff;
}

.service-feature h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.service-feature p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-feature ul {
    list-style: none;
    padding: 0;
}

.service-feature ul li {
    color: #64748b;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-feature ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    text-align: center;
    padding: 2rem 1rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: #1f2937;
}

.process-step h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.process-step p {
    color: #64748b;
    line-height: 1.6;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: #fff;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.pricing-card.featured {
    border-color: #2563eb;
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #2563eb;
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.price {
    margin-bottom: 2rem;
}

.currency {
    font-size: 1.5rem;
    color: #64748b;
    vertical-align: top;
}

.amount {
    font-size: 3rem;
    font-weight: 800;
    color: #2563eb;
}

.period {
    font-size: 1rem;
    color: #64748b;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.pricing-features ul li {
    padding: 0.5rem 0;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-features ul li i {
    color: #10b981;
    font-size: 0.9rem;
}

.btn-outline {
    background: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-outline:hover {
    background: #2563eb;
    color: #fff;
}

.pricing-note {
    text-align: center;
    margin-top: 2rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
}

.pricing-note p {
    color: #64748b;
    margin: 0;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #f8fafc;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.faq-item h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #64748b;
    line-height: 1.6;
}

/* Service Specific Sections */
.website-types,
.campaign-types,
.platforms-grid,
.influencer-types,
.pr-services-types,
.backlink-types {
    padding: 80px 0;
    background: #fff;
}

.website-types-grid,
.campaign-types-grid,
.platforms-grid,
.influencer-types-grid,
.pr-types-grid,
.backlink-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.website-type,
.campaign-type,
.platform-card,
.influencer-type,
.pr-type,
.backlink-type {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.website-type:hover,
.campaign-type:hover,
.platform-card:hover,
.influencer-type:hover,
.pr-type:hover,
.backlink-type:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.type-icon,
.platform-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.type-icon i,
.platform-icon i {
    font-size: 2rem;
    color: #fff;
}

.website-type h3,
.campaign-type h3,
.platform-card h3,
.influencer-type h3,
.pr-type h3,
.backlink-type h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.website-type p,
.campaign-type p,
.platform-card p,
.influencer-type p,
.pr-type p,
.backlink-type p {
    color: #64748b;
    margin-bottom: 1.5rem;
}

.type-features,
.platform-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.type-features span,
.platform-features span {
    background: #e5e7eb;
    color: #374151;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Responsive Design */

/* Large Desktop - 1024px and above */
@media (min-width: 1024px) {
    .container {
        max-width: 1200px;
        padding: 0 2rem;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .section-header h2 {
        font-size: 3rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .hero-container {
        grid-template-columns: 1.3fr 0.7fr;
        gap: 4rem;
    }
    
    .hero-image {
        padding-left: 3rem;
    }
    
    .hero-image-container {
        max-width: 500px;
        height: 400px;
    }
}

/* Tablet - 768px to 1023px */
@media (max-width: 1023px) and (min-width: 769px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .hero-container {
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-content {
        gap: 3rem;
    }
    
    .contact-content {
        gap: 3rem;
    }
}

/* Mobile Large - 768px and below */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #fff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-image {
        justify-content: center;
        padding-left: 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        padding: 12px 24px;
    }
    
    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    
    .stat {
        min-width: 120px;
    }
    
    .hero-image-container {
        max-width: 400px;
        height: 300px;
    }
    
    .analytics-dashboard {
        padding: 15px;
    }
    
    .dashboard-header h4 {
        font-size: 1rem;
    }
    
    .stat-item {
        font-size: 0.7rem;
        padding: 3px 6px;
    }
    
    .chart-container {
        height: 60px;
        gap: 6px;
    }
    
    .chart-bar {
        width: 10px;
    }
    
    .dashboard-metrics {
        gap: 8px;
    }
    
    .metric {
        padding: 6px 8px;
    }
    
    .metric i {
        font-size: 0.8rem;
    }
    
    .metric span {
        font-size: 0.7rem;
    }
    
    .floating-card {
        padding: 10px 15px;
        min-width: 100px;
    }
    
    .floating-card i {
        font-size: 1.2rem;
    }
    
    .floating-card span {
        font-size: 0.8rem;
    }
    
    .card-1 {
        top: 5%;
        right: -5%;
    }
    
    .card-2 {
        bottom: 15%;
        left: -10%;
    }
    
    .card-3 {
        top: 45%;
        right: -3%;
    }
    
    .services-overview,
    .why-choose-us,
    .about,
    .contact {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature {
        padding: 1.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .about-text h2 {
        font-size: 2.2rem;
    }
    
    .about-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .contact-info {
        gap: 1.5rem;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .locations-section {
        padding: 60px 0;
    }
    
    .locations-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .location-card {
        padding: 1.5rem;
    }
    
    /* Service page specific mobile styles */
    .service-hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .service-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .service-hero-text h1 {
        font-size: 2.2rem;
    }
    
    .service-hero-text h2 {
        font-size: 1.6rem;
    }
    
    .service-hero-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .service-hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .service-details {
        padding: 60px 0;
    }
    
    .service-features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-feature {
        padding: 1.5rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .process-step {
        padding: 1.5rem 1rem;
    }
    
    .pricing-section {
        padding: 60px 0;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-card {
        padding: 1.5rem;
    }
    
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .faq-item {
        padding: 1.5rem;
    }
    
    .website-types-grid,
    .campaign-types-grid,
    .platforms-grid,
    .influencer-types-grid,
    .pr-types-grid,
    .backlink-types-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .website-type,
    .campaign-type,
    .platform-card,
    .influencer-type,
    .pr-type,
    .backlink-type {
        padding: 1.5rem;
    }
}

/* Mobile Medium - 480px and below */
@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .nav-container {
        padding: 0 0.75rem;
    }
    
    .hero {
        padding: 90px 0 50px;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        gap: 0.75rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .hero-image-container {
        max-width: 350px;
        height: 250px;
    }
    
    .analytics-dashboard {
        padding: 12px;
    }
    
    .dashboard-header h4 {
        font-size: 0.9rem;
    }
    
    .stat-item {
        font-size: 0.65rem;
        padding: 2px 4px;
    }
    
    .chart-container {
        height: 50px;
        gap: 4px;
    }
    
    .chart-bar {
        width: 8px;
    }
    
    .dashboard-metrics {
        gap: 6px;
        margin-top: 15px;
    }
    
    .metric {
        padding: 4px 6px;
    }
    
    .metric i {
        font-size: 0.7rem;
    }
    
    .metric span {
        font-size: 0.65rem;
    }
    
    .floating-card {
        padding: 8px 12px;
        min-width: 80px;
    }
    
    .floating-card i {
        font-size: 1rem;
    }
    
    .floating-card span {
        font-size: 0.7rem;
    }
    
    .card-1 {
        top: 5%;
        right: -3%;
    }
    
    .card-2 {
        bottom: 10%;
        left: -8%;
    }
    
    .card-3 {
        top: 40%;
        right: -2%;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .service-card,
    .feature,
    .service-feature,
    .faq-item,
    .pricing-card {
        padding: 1.25rem;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .about-stat .stat-number {
        font-size: 1.5rem;
    }
    
    .contact-form {
        padding: 1.25rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .service-hero-text h1 {
        font-size: 1.8rem;
    }
    
    .service-hero-text h2 {
        font-size: 1.4rem;
    }
    
    .service-hero-text p {
        font-size: 1rem;
    }
    
    .process-step {
        padding: 1.25rem 0.75rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .pricing-header h3 {
        font-size: 1.3rem;
    }
    
    .amount {
        font-size: 2.5rem;
    }
    
    .footer {
        padding: 30px 0 15px;
    }
    
    .footer-content {
        gap: 1.5rem;
    }
    
    .locations-section {
        padding: 50px 0;
    }
    
    .location-card {
        padding: 1.25rem;
    }
    
    .location-icon {
        width: 50px;
        height: 50px;
    }
    
    .location-icon i {
        font-size: 1.2rem;
    }
    
    .location-card h3 {
        font-size: 1.1rem;
    }
    
    .location-address,
    .location-phone,
    .location-email {
        font-size: 0.9rem;
    }
}

/* Mobile Small - 320px and below */
@media (max-width: 320px) {
    .container {
        padding: 0 0.5rem;
    }
    
    .nav-container {
        padding: 0 0.5rem;
    }
    
    .nav-logo h2 {
        font-size: 1.5rem;
    }
    
    .nav-logo span {
        font-size: 0.8rem;
    }
    
    .hero {
        padding: 80px 0 40px;
    }
    
    .hero-title {
        font-size: 1.7rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .hero-image-container {
        max-width: 300px;
        height: 200px;
    }
    
    .analytics-dashboard {
        padding: 10px;
    }
    
    .dashboard-header h4 {
        font-size: 0.8rem;
    }
    
    .stat-item {
        font-size: 0.6rem;
        padding: 2px 3px;
    }
    
    .chart-container {
        height: 40px;
        gap: 3px;
    }
    
    .chart-bar {
        width: 6px;
    }
    
    .dashboard-metrics {
        gap: 4px;
        margin-top: 10px;
    }
    
    .metric {
        padding: 3px 4px;
    }
    
    .metric i {
        font-size: 0.6rem;
    }
    
    .metric span {
        font-size: 0.6rem;
    }
    
    .floating-card {
        padding: 6px 10px;
        min-width: 70px;
    }
    
    .floating-card i {
        font-size: 0.9rem;
    }
    
    .floating-card span {
        font-size: 0.65rem;
    }
    
    .card-1 {
        top: 3%;
        right: -2%;
    }
    
    .card-2 {
        bottom: 8%;
        left: -6%;
    }
    
    .card-3 {
        top: 35%;
        right: -1%;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .section-header p {
        font-size: 0.9rem;
    }
    
    .service-card,
    .feature,
    .service-feature,
    .faq-item,
    .pricing-card {
        padding: 1rem;
    }
    
    .service-icon,
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon i,
    .feature-icon i {
        font-size: 1.5rem;
    }
    
    .service-card h3,
    .feature h3,
    .service-feature h3 {
        font-size: 1.1rem;
    }
    
    .service-card p,
    .feature p,
    .service-feature p {
        font-size: 0.9rem;
    }
    
    .contact-form {
        padding: 1rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 8px 10px;
        font-size: 0.85rem;
    }
    
    .service-hero-text h1 {
        font-size: 1.6rem;
    }
    
    .service-hero-text h2 {
        font-size: 1.2rem;
    }
    
    .service-hero-text p {
        font-size: 0.9rem;
    }
    
    .process-step {
        padding: 1rem 0.5rem;
    }
    
    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .process-step h3 {
        font-size: 1.1rem;
    }
    
    .process-step p {
        font-size: 0.9rem;
    }
    
    .pricing-header h3 {
        font-size: 1.2rem;
    }
    
    .amount {
        font-size: 2.2rem;
    }
    
    .currency {
        font-size: 1.2rem;
    }
    
    .period {
        font-size: 0.9rem;
    }
    
    .footer {
        padding: 25px 0 10px;
    }
    
    .footer-section h3,
    .footer-section h4 {
        font-size: 1.1rem;
    }
    
    .footer-section p,
    .footer-section ul li a {
        font-size: 0.9rem;
    }
    
    .social-links a {
        width: 35px;
        height: 35px;
    }
    
    .locations-section {
        padding: 40px 0;
    }
    
    .location-card {
        padding: 1rem;
    }
    
    .location-icon {
        width: 45px;
        height: 45px;
    }
    
    .location-icon i {
        font-size: 1.1rem;
    }
    
    .location-card h3 {
        font-size: 1rem;
    }
    
    .location-address,
    .location-phone,
    .location-email {
        font-size: 0.85rem;
    }
    
    .location-badge {
        font-size: 0.7rem;
        padding: 3px 8px;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: #2563eb;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.scroll-to-top:hover {
    background: #1d4ed8;
    transform: scale(1.1);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 768px) {
    .scroll-to-top {
        width: 45px;
        height: 45px;
        bottom: 15px;
        right: 15px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .scroll-to-top {
        width: 40px;
        height: 40px;
        bottom: 10px;
        right: 10px;
        font-size: 1rem;
    }
}

/* Responsive Images */
img {
    max-width: 100%;
    height: auto;
}

/* Touch-friendly elements */
@media (hover: none) and (pointer: coarse) {
    .btn,
    .nav-link,
    .service-link,
    .social-links a {
        min-height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hamburger {
        min-height: 44px;
        min-width: 44px;
    }
}

/* Focus styles for accessibility */
.btn:focus,
.nav-link:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

/* Loading animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Smooth transitions for all interactive elements */
* {
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }

/* Responsive utility classes */
@media (max-width: 768px) {
    .mobile-hidden { display: none !important; }
    .mobile-full-width { width: 100% !important; }
    .mobile-text-center { text-align: center !important; }
    
    .contact-social-links {
        justify-content: center;
    }
    
    .contact-social-link {
        flex: 1;
        min-width: 120px;
        justify-content: center;
    }
}

@media (min-width: 769px) {
    .desktop-hidden { display: none !important; }
}

/* Print styles */
@media print {
    .navbar,
    .hamburger,
    .scroll-to-top,
    .btn,
    .contact-form {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .hero {
        background: none !important;
        color: #000 !important;
    }
    
    .service-card,
    .feature {
        break-inside: avoid;
        box-shadow: none !important;
        border: 1px solid #ddd;
    }
}

/* Thank You Page Styles */
.thank-you-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.thank-you-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.thank-you-icon {
    margin-bottom: 2rem;
}

.thank-you-icon i {
    font-size: 5rem;
    color: #10b981;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.thank-you-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #fff;
}

.thank-you-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.thank-you-message {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.thank-you-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.detail-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.detail-card:hover {
    transform: translateY(-5px);
}

.detail-icon {
    margin-bottom: 1rem;
}

.detail-icon i {
    font-size: 2.5rem;
    color: #10b981;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.detail-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fff;
}

.detail-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.thank-you-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.thank-you-actions .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 200px;
    justify-content: center;
}

.thank-you-actions .btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
}

.thank-you-actions .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}

.thank-you-contact {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.thank-you-contact h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #fff;
}

.thank-you-contact .social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.thank-you-contact .social-link {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.thank-you-contact .social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    color: #fff;
}

/* Responsive Thank You Page */
@media (max-width: 768px) {
    .thank-you-content h1 {
        font-size: 2.5rem;
    }
    
    .thank-you-content h2 {
        font-size: 1.3rem;
    }
    
    .thank-you-message {
        font-size: 1.1rem;
    }
    
    .thank-you-details {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .thank-you-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .thank-you-actions .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .thank-you-icon i {
        font-size: 4rem;
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .thank-you-content {
        padding: 0 1rem;
    }
    
    .thank-you-content h1 {
        font-size: 2rem;
    }
    
    .detail-card {
        padding: 1.5rem;
    }
}
