* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* Prevent horizontal scroll on all devices */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

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

:root {
    --primary: #1a1a2e;
    --secondary: #c8a882;
    --accent: #2c3e50;
    --text: #1a1a1a;
    --text-light: #666;
    --bg: #ffffff;
    --bg-secondary: #f8f9fa;
    --bg-tertiary: #e9ecef;
    --border: #dee2e6;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-lg: rgba(0, 0, 0, 0.15);
    --success: #28a745;
    --warning: #ffc107;
    --danger: #dc3545;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .btn,
    .nav-links a,
    .service-card,
    .feature-item,
    .contact-info-card,
    .method-card {
        -webkit-tap-highlight-color: transparent;
    }
    
    .btn:active {
        transform: scale(0.98);
    }
    
    .service-card:active,
    .feature-item:active,
    .contact-info-card:active {
        transform: scale(0.98);
    }
}

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

/* Demo Badge */
.demo-badge {
    position: fixed;
    top: 20px;
    left: 20px;
    background: rgba(26, 26, 46, 0.95);
    color: #c8a882;
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 13px;
    z-index: 9999;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(200, 168, 130, 0.3);
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
}

/* Top Bar */
.top-bar {
    background: var(--primary);
    color: white;
    padding: 10px 0;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.contact-info-bar {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.contact-item:hover {
    color: var(--secondary);
}

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

.social-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    border-radius: 50%;
    transition: all 0.3s;
    background: rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

/* Header */
header {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px var(--shadow);
}

.navbar {
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s;
    letter-spacing: -0.5px;
}

.logo:hover {
    color: var(--secondary);
}

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

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text);
    border-radius: 3px;
    transition: 0.3s;
}

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

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s;
}

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

.nav-links a:hover,
.nav-links a.active {
    color: var(--secondary);
}

/* Hero Section */
.hero {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #2c3e50 100%);
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95) 0%, rgba(44, 62, 80, 0.92) 100%);
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect x="0" y="0" width="100" height="100" fill="rgba(255,255,255,0.02)"/></svg>');
    opacity: 0.1;
    z-index: 2;
}

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

.hero-content {
    max-width: 700px;
    margin-bottom: 60px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

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

.btn {
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background: #b89968;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(200, 168, 130, 0.4);
}

.btn-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

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

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

.stat-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-card h3 {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.stat-card p {
    font-size: 1rem;
    opacity: 0.95;
}

/* Services Preview */
.services-preview {
    padding: 80px 0;
    background: var(--bg);
}

/* Services Grid Modern */
.services-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card-modern {
    background: var(--bg-secondary);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.service-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--secondary);
}

.service-card-header {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    padding: 2.5rem 2rem;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.service-icon-modern {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.service-icon-modern i {
    font-size: 2.5rem;
    color: white;
}

.service-badge-tag {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.service-badge-tag.featured {
    background: var(--secondary);
    border-color: var(--secondary);
}

.service-card-body {
    padding: 2rem;
}

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

.service-card-body > p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

.service-features-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.6rem 0;
    color: var(--text);
    font-size: 0.95rem;
}

.service-features-list i {
    color: var(--secondary);
    font-size: 1rem;
}

.service-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.service-price {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0.3rem;
}

.price-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary);
}

.btn-service {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-service:hover {
    background: var(--secondary);
    transform: translateX(-5px);
}

.btn-service i {
    transition: transform 0.3s;
}

.btn-service:hover i {
    transform: translateX(-3px);
}

.services-cta {
    text-align: center;
    padding: 2.5rem;
    background: var(--bg-secondary);
    border-radius: 16px;
    border: 1px solid var(--border);
}

.services-cta p {
    font-size: 1.2rem;
    color: var(--text);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

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

.service-card {
    background: var(--bg-secondary);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: all 0.3s;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow-lg);
    border-color: var(--primary);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i,
.feature-icon i {
    font-size: 3rem;
    color: white;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 2.5rem;
}

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

.service-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Why Us Section */
.why-us {
    padding: 80px 0;
    background: var(--bg-secondary);
}

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

.feature-card-modern {
    background: var(--bg);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.feature-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s;
}

.feature-card-modern:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.feature-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border-color: var(--secondary);
}

.feature-number {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 4rem;
    font-weight: 700;
    color: var(--bg-secondary);
    line-height: 1;
}

.feature-icon-modern {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.feature-icon-modern i {
    font-size: 2.5rem;
    color: white;
}

.feature-card-modern h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text);
}

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

.feature-stats {
    display: flex;
    align-items: baseline;
    gap: 0.8rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.stat-highlight {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

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

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

.feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.feature-item p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect x="0" y="0" width="100" height="100" fill="rgba(255,255,255,0.02)"/></svg>');
    opacity: 0.1;
}

.stats-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.stat-card-modern {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 3rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 2rem;
    transition: all 0.3s;
}

.stat-card-modern:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.stat-icon i {
    font-size: 2.5rem;
    color: white;
}

.stat-content h3 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-content p {
    font-size: 1.1rem;
    color: white;
    opacity: 0.95;
    margin: 0;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    text-align: center;
    position: relative;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect x="0" y="0" width="100" height="100" fill="rgba(255,255,255,0.02)"/></svg>');
    opacity: 0.1;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

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

/* Footer */
footer {
    background: #0f0f1e;
    color: white;
    padding: 60px 0 0;
    border-top: 3px solid var(--secondary);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.footer-section ul li {
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section ul li i {
    color: var(--secondary);
    font-size: 0.9rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section a:hover {
    color: var(--secondary);
}

.footer-bottom {
    text-align: center;
    padding: 2rem 0;
    background: rgba(0, 0, 0, 0.2);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-bottom p {
    margin: 0.5rem 0;
}

.footer-bottom a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: #d4b896;
}

/* Footer Social Icons */
.footer-social {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.footer-social-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s;
    font-size: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social-icon:hover {
    background: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(200, 168, 130, 0.3);
    border-color: var(--secondary);
}

/* Responsive - Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Responsive - Tablet Portrait (768px) */
@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
    
    .demo-badge {
        top: 15px;
        left: 15px;
        padding: 6px 16px;
        font-size: 12px;
    }
    
    .mobile-toggle {
        display: flex;
        z-index: 10001;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        background: var(--bg);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        border-top: 1px solid var(--border);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s;
        z-index: 999;
        box-shadow: 0 4px 10px var(--shadow);
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
        z-index: 10000;
    }
    
    .nav-links a {
        padding: 0.5rem 0;
        font-size: 1.1rem;
    }

    .hero {
        padding: 60px 0;
        min-height: auto;
    }

    .hero h1 {
        font-size: 2.2rem;
        line-height: 1.3;
    }

    .hero p {
        font-size: 1rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1.5rem 1rem;
    }
    
    .stat-card h3 {
        font-size: 2rem;
    }
    
    .stat-card p {
        font-size: 0.9rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .services-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-card-modern {
        min-height: auto;
    }
    
    .service-card-header {
        padding: 2rem 1.5rem;
    }
    
    .service-icon-modern {
        width: 70px;
        height: 70px;
    }
    
    .service-icon-modern i {
        font-size: 2rem;
    }
    
    .service-card-body {
        padding: 1.5rem;
    }
    
    .service-card-body h3 {
        font-size: 1.3rem;
    }
    
    .price-value {
        font-size: 1.5rem;
    }
    
    .features-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .feature-card-modern {
        padding: 2.5rem 2rem;
    }
    
    .feature-number {
        font-size: 3rem;
        top: 1.5rem;
        right: 1.5rem;
    }
    
    .feature-icon-modern {
        width: 70px;
        height: 70px;
    }
    
    .feature-icon-modern i {
        font-size: 2rem;
    }
    
    .feature-card-modern h3 {
        font-size: 1.3rem;
    }
    
    .stats-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-card-modern {
        padding: 2.5rem 1.5rem;
        gap: 1.5rem;
    }
    
    .stat-icon {
        width: 70px;
        height: 70px;
    }
    
    .stat-icon i {
        font-size: 2rem;
    }
    
    .stat-content h3 {
        font-size: 2.5rem;
    }
    
    .stat-content p {
        font-size: 1rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
    }
    
    .service-icon i {
        font-size: 2.5rem;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
    }
    
    .feature-icon i {
        font-size: 2rem;
    }
    
    .feature-item h3 {
        font-size: 1.3rem;
    }
    
    .cta h2 {
        font-size: 2rem;
    }
    
    .cta p {
        font-size: 1rem;
    }
}

/* Responsive - Mobile (480px and below) */
@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    .demo-badge {
        top: 10px;
        left: 10px;
        padding: 5px 12px;
        font-size: 11px;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .hero {
        padding: 40px 0;
        min-height: auto;
    }
    
    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .hero p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        text-align: center;
        padding: 12px 24px;
        font-size: 0.95rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-card {
        padding: 1.5rem;
    }
    
    .stat-card h3 {
        font-size: 2rem;
    }
    
    .stat-card p {
        font-size: 0.9rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header p {
        font-size: 0.95rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .services-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .service-card-header {
        padding: 2rem;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }
    
    .service-icon-modern {
        width: 65px;
        height: 65px;
    }
    
    .service-icon-modern i {
        font-size: 1.8rem;
    }
    
    .service-card-body {
        padding: 1.5rem;
    }
    
    .service-card-body h3 {
        font-size: 1.2rem;
    }
    
    .service-card-body > p {
        font-size: 0.95rem;
    }
    
    .service-features-list li {
        font-size: 0.9rem;
    }
    
    .service-card-footer {
        flex-direction: column;
        gap: 1.5rem;
        align-items: stretch;
    }
    
    .service-price {
        text-align: center;
    }
    
    .price-value {
        font-size: 1.6rem;
    }
    
    .btn-service {
        width: 100%;
        justify-content: center;
    }
    
    .services-cta {
        padding: 2rem 1.5rem;
    }
    
    .services-cta p {
        font-size: 1rem;
    }
    
    .features-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .feature-card-modern {
        padding: 2rem 1.5rem;
    }
    
    .feature-number {
        font-size: 2.5rem;
        top: 1rem;
        right: 1rem;
    }
    
    .feature-icon-modern {
        width: 65px;
        height: 65px;
    }
    
    .feature-icon-modern i {
        font-size: 1.8rem;
    }
    
    .feature-card-modern h3 {
        font-size: 1.2rem;
    }
    
    .feature-card-modern p {
        font-size: 0.95rem;
    }
    
    .feature-stats {
        padding-top: 1rem;
    }
    
    .stat-highlight {
        font-size: 1.6rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    .stats-grid-modern {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-card-modern {
        padding: 2rem 1.5rem;
        flex-direction: column;
        text-align: center;
    }
    
    .stat-icon {
        width: 65px;
        height: 65px;
        margin: 0 auto;
    }
    
    .stat-icon i {
        font-size: 1.8rem;
    }
    
    .stat-content h3 {
        font-size: 2.5rem;
    }
    
    .stat-content p {
        font-size: 0.95rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .service-icon {
        width: 65px;
        height: 65px;
    }
    
    .service-icon i {
        font-size: 2rem;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .service-card p {
        font-size: 0.95rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .feature-icon {
        width: 65px;
        height: 65px;
    }
    
    .feature-icon i {
        font-size: 2rem;
    }
    
    .feature-item h3 {
        font-size: 1.2rem;
    }
    
    .feature-item p {
        font-size: 0.95rem;
    }

    .cta h2 {
        font-size: 1.6rem;
    }
    
    .cta p {
        font-size: 0.95rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-section ul li {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom {
        padding: 1.5rem 0;
        font-size: 0.85rem;
    }
}


/* Footer Responsive */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-section ul li {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
}

/* Large Desktop (1440px and above) */
@media (min-width: 1440px) {
    .container {
        max-width: 1400px;
    }
    
    .hero h1 {
        font-size: 4rem;
    }
    
    .hero p {
        font-size: 1.4rem;
    }
    
    .section-header h2 {
        font-size: 3rem;
    }
    
    .section-header p {
        font-size: 1.2rem;
    }
    
    .service-card {
        padding: 3rem;
    }
    
    .service-icon {
        width: 90px;
        height: 90px;
    }
    
    .service-icon i {
        font-size: 3.5rem;
    }
    
    .service-card h3 {
        font-size: 1.7rem;
    }
    
    .service-card p {
        font-size: 1.1rem;
    }
    
    .feature-item h3 {
        font-size: 1.7rem;
    }
    
    .feature-item p {
        font-size: 1.1rem;
    }
    
    .cta h2 {
        font-size: 3rem;
    }
    
    .cta p {
        font-size: 1.3rem;
    }
    
    .footer-content {
        grid-template-columns: 2.5fr 1fr 1fr 1fr 1fr;
    }
}

/* Extra Large Desktop (1920px and above) */
@media (min-width: 1920px) {
    .container {
        max-width: 1600px;
    }
    
    .hero {
        padding: 120px 0;
    }
    
    .hero h1 {
        font-size: 4.5rem;
    }
    
    .hero p {
        font-size: 1.5rem;
    }
    
    .stat-card h3 {
        font-size: 3rem;
    }
    
    .stat-card p {
        font-size: 1.2rem;
    }
    
    .services-preview,
    .why-us,
    .cta {
        padding: 100px 0;
    }
    
    .section-header h2 {
        font-size: 3.5rem;
    }
    
    .section-header p {
        font-size: 1.3rem;
    }
}

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

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect x="0" y="0" width="100" height="100" fill="rgba(255,255,255,0.02)"/></svg>');
    opacity: 0.1;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

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

.page-header p {
    font-size: 1.2rem;
    opacity: 0.95;
}

/* Services Detail */
.services-detail {
    padding: 80px 0;
    background: var(--bg);
}

/* Services Tabs */
.services-tabs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 3rem;
    background: var(--bg-secondary);
    padding: 1rem;
    border-radius: 16px;
    border: 1px solid var(--border);
}

.tab-btn {
    background: transparent;
    border: none;
    padding: 1.5rem 1rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    color: var(--text);
    font-weight: 600;
}

.tab-btn i {
    font-size: 2rem;
    color: var(--text-light);
    transition: all 0.3s;
}

.tab-btn:hover {
    background: var(--bg);
    transform: translateY(-2px);
}

.tab-btn:hover i {
    color: var(--secondary);
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    box-shadow: 0 5px 20px rgba(26, 26, 46, 0.3);
}

.tab-btn.active i {
    color: white;
}

/* Tab Content */
.tab-content {
    display: none;
    animation: fadeIn 0.5s ease-in;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Service Showcase */
.service-showcase {
    background: var(--bg-secondary);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.service-showcase-header {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    padding: 3rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
    align-items: center;
    color: white;
}

.service-badge {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.service-badge i {
    font-size: 3.5rem;
    color: white;
}

.service-title-group h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: white;
}

.service-subtitle {
    font-size: 1.1rem;
    opacity: 0.95;
    margin: 0;
}

.service-price-tag {
    text-align: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.price-from {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 0.3rem;
}

.price-amount {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary);
}

.service-showcase-body {
    padding: 3rem;
}

/* Service Features Grid */
.service-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-item-detailed {
    background: var(--bg);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: all 0.3s;
}

.feature-item-detailed:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--secondary);
}

.feature-icon-small {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon-small i {
    font-size: 1.8rem;
    color: white;
}

.feature-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.feature-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* Service CTA Box */
.service-cta-box {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    padding: 2.5rem;
    border-radius: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    color: white;
}

.cta-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: white;
}

.cta-content p {
    font-size: 1.1rem;
    opacity: 0.95;
    margin: 0;
}

.service-cta-box .btn {
    flex-shrink: 0;
    background: white;
    color: var(--primary);
    border: none;
}

.service-cta-box .btn:hover {
    background: var(--secondary);
    color: white;
    transform: translateY(-2px);
}

.service-detail-card {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 2.5rem;
    background: var(--bg-secondary);
    padding: 3rem;
    border-radius: 16px;
    margin-bottom: 2.5rem;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.service-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-lg);
    border-color: var(--primary);
}

.service-detail-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-detail-icon i {
    font-size: 4rem;
    color: white;
}

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.service-detail-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 2rem;
}

.service-detail-content ul li {
    padding: 0.8rem 0;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border-bottom: 1px solid var(--border);
}

.service-detail-content ul li:before {
    content: '✓';
    color: var(--secondary);
    font-weight: bold;
    font-size: 1.2rem;
}

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.price-label {
    color: var(--text-light);
    font-size: 1rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary);
}

.service-features {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.feature-box {
    background: var(--bg);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-lg);
    border-color: var(--primary);
}

.feature-box i {
    font-size: 3.5rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.feature-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.feature-box p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Coverage Stats */
.coverage-stats {
    padding: 60px 0;
    background: var(--bg-secondary);
}

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

.coverage-stat {
    background: var(--bg);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.coverage-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-lg);
    border-color: var(--primary);
}

.coverage-stat i {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.coverage-stat h3 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.coverage-stat p {
    color: var(--text-light);
}

/* Domestic Coverage */
.domestic-coverage {
    padding: 80px 0;
    background: var(--bg);
}

/* Coverage Map Section */
.coverage-map-section {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    background: var(--bg-secondary);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid var(--border);
}

.map-visual {
    background: var(--bg);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.map-placeholder {
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.05) 0%, rgba(44, 62, 80, 0.05) 100%);
    position: relative;
    padding: 3rem;
}

.map-placeholder i {
    font-size: 6rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.map-placeholder p {
    font-size: 1.3rem;
    color: var(--text);
    font-weight: 600;
    margin-bottom: 1rem;
}

.coverage-badge {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 5px 20px rgba(26, 26, 46, 0.3);
}

.coverage-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.highlight-card {
    background: var(--bg);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    display: flex;
    gap: 1.5rem;
    align-items: center;
    transition: all 0.3s;
}

.highlight-card:hover {
    transform: translateX(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--secondary);
}

.highlight-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-icon i {
    font-size: 2rem;
    color: white;
}

.highlight-content h4 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.highlight-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
}

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

.region-card {
    background: var(--bg-secondary);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.region-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-lg);
    border-color: var(--primary);
}

.region-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.region-icon i {
    font-size: 2rem;
    color: white;
}

.region-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.region-card ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.region-card ul li {
    padding: 0.5rem 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.region-card ul li:before {
    content: '•';
    color: var(--secondary);
    font-size: 1.5rem;
}

.delivery-time {
    display: inline-block;
    background: var(--secondary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* International Coverage */
.international-coverage {
    padding: 80px 0;
    background: var(--bg-secondary);
}

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

.continent-card {
    background: var(--bg);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.continent-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-lg);
    border-color: var(--primary);
}

.continent-header {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.continent-header i {
    font-size: 2.5rem;
}

.continent-header h3 {
    font-size: 1.5rem;
    margin: 0;
}

.continent-details {
    padding: 2rem;
}

.countries-count {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.delivery-info {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

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

.countries-list li {
    padding: 0.5rem 0;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.countries-list li:before {
    content: '→';
    color: var(--secondary);
    font-weight: bold;
}

/* Coverage Features */
.coverage-features {
    padding: 80px 0;
    background: var(--bg);
}

/* Calculator Section */
.calculator-section {
    padding: 80px 0;
    background: var(--bg);
}

/* Calculator Steps */
.calculator-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 4rem;
    background: var(--bg-secondary);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border);
}

.step-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    border-radius: 16px;
    transition: all 0.3s;
    cursor: pointer;
}

.step-item.active {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    box-shadow: 0 5px 20px rgba(26, 26, 46, 0.3);
}

.step-number {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    border: 3px solid rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
}

.step-item:not(.active) .step-number {
    background: var(--bg);
    color: var(--text-light);
    border-color: var(--border);
}

.step-content h4 {
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
}

.step-item:not(.active) .step-content h4 {
    color: var(--text);
}

.step-content p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

.step-item:not(.active) .step-content p {
    color: var(--text-light);
}

.step-divider {
    width: 60px;
    height: 3px;
    background: var(--border);
    margin: 0 1rem;
}

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

.calculator-form-container {
    background: var(--bg-secondary);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid var(--border);
}

.calculator-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

.form-group label {
    font-weight: 600;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-group label i {
    color: var(--secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
    background: var(--bg);
    color: var(--text);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26, 26, 46, 0.1);
}

.dimensions-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.calculator-result {
    display: none;
    background: var(--bg-secondary);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid var(--border);
}

.result-card {
    background: var(--bg);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border);
}

.result-card h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text);
    text-align: center;
}

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

.result-item {
    display: flex;
    justify-content: space-between;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border);
}

.result-item.total {
    border-bottom: none;
    padding-top: 2rem;
    margin-top: 1rem;
    border-top: 2px solid var(--primary);
}

.result-item .label {
    font-weight: 600;
    color: var(--text);
}

.result-item .value {
    font-weight: 700;
    color: var(--secondary);
}

.result-item.total .value {
    font-size: 2rem;
    color: var(--primary);
}

.calculator-info {
    margin-top: 3rem;
}

.info-card {
    background: var(--bg-secondary);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    border-right: 4px solid var(--secondary);
}

.info-card i {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

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

.info-card ul {
    list-style: none;
}

.info-card ul li {
    padding: 0.8rem 0;
    color: var(--text-light);
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.info-card ul li:before {
    content: '•';
    color: var(--secondary);
    font-size: 1.5rem;
    line-height: 1;
}

/* Pricing Features */
.pricing-features {
    padding: 80px 0;
    background: var(--bg-secondary);
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: var(--bg);
}

/* Contact Hero Banner */
.contact-hero-banner {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    padding: 3rem;
    border-radius: 20px;
    margin-bottom: 4rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect x="0" y="0" width="100" height="100" fill="rgba(255,255,255,0.02)"/></svg>');
    opacity: 0.1;
}

.contact-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-bottom: 2.5rem;
}

.contact-hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

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

.contact-hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.hero-stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 1.2rem 2rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-stat-item i {
    font-size: 1.8rem;
    color: var(--secondary);
}

.hero-stat-item span {
    font-weight: 600;
    font-size: 1.1rem;
}

/* Contact Main Grid */
.contact-main-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}

/* Contact Info Section */
.contact-info-section {
    background: var(--bg-secondary);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid var(--border);
    height: fit-content;
}

.contact-info-header {
    margin-bottom: 2.5rem;
}

.contact-info-header h3 {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    color: var(--text);
}

.contact-info-header p {
    color: var(--text-light);
    font-size: 1rem;
}

/* Contact Methods List */
.contact-methods-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.contact-method-item {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--bg);
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.contact-method-item:hover {
    transform: translateX(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--secondary);
}

.method-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-icon i {
    font-size: 2rem;
    color: white;
}

.method-details h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.method-details p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 0.8rem;
}

.method-link {
    color: var(--secondary);
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s;
    display: inline-block;
}

.method-link:hover {
    color: var(--primary);
}

/* Social Connect */
.social-connect {
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.social-connect h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.social-links-large {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.social-link-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 1.5rem;
    background: var(--bg);
    border-radius: 12px;
    border: 1px solid var(--border);
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    transition: all 0.3s;
}

.social-link-item:hover {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(26, 26, 46, 0.3);
}

.social-link-item i {
    font-size: 1.5rem;
}

/* Contact Form Section */
.contact-form-section {
    background: var(--bg-secondary);
    border-radius: 20px;
    border: 1px solid var(--border);
    overflow: hidden;
}

.form-card {
    background: var(--bg);
    margin: 1rem;
    border-radius: 16px;
    overflow: hidden;
}

.form-card-header {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    padding: 3rem;
    text-align: center;
    color: white;
    position: relative;
}

.form-card-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect x="0" y="0" width="100" height="100" fill="rgba(255,255,255,0.02)"/></svg>');
    opacity: 0.1;
}

.form-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
}

.form-icon i {
    font-size: 2.5rem;
    color: white;
}

.form-card-header h3 {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    color: white;
    position: relative;
    z-index: 1;
}

.form-card-header p {
    font-size: 1rem;
    opacity: 0.95;
    margin: 0;
    position: relative;
    z-index: 1;
}

.contact-form-modern {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-wrapper {
    display: grid;
    gap: 3rem;
}

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

.contact-info-card {
    background: var(--bg-secondary);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-lg);
    border-color: var(--primary);
}

.contact-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact-card-icon i {
    font-size: 2.5rem;
    color: white;
}

.contact-info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--text);
}

.contact-info-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.contact-link {
    color: var(--secondary);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-link:hover {
    color: var(--primary);
}

.contact-form-wrapper {
    background: var(--bg-secondary);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid var(--border);
}

.contact-form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.contact-form-header h2 {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    color: var(--text);
}

.contact-form-header p {
    color: var(--text-light);
}

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

.form-message {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Contact Methods */
.contact-methods {
    padding: 80px 0;
    background: var(--bg-secondary);
}

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

.method-card {
    background: var(--bg);
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-lg);
    border-color: var(--primary);
}

.method-card i {
    font-size: 4rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

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

.method-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Working Hours Section */
.working-hours-section {
    padding: 80px 0;
    background: var(--bg);
}

.working-hours-card {
    background: var(--bg-secondary);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    max-width: 700px;
    margin: 0 auto;
}

.working-hours-header {
    text-align: center;
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.working-hours-header i {
    font-size: 3.5rem;
    color: var(--secondary);
}

.working-hours-header h2 {
    font-size: 2rem;
    color: var(--text);
}

.working-hours-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: var(--bg);
    border-radius: 8px;
    border: 1px solid var(--border);
}

.hours-item.highlight {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    border: none;
}

.hours-item .day {
    font-weight: 600;
    font-size: 1.1rem;
}

.hours-item .time {
    color: var(--secondary);
    font-weight: 600;
}

.hours-item.highlight .time {
    color: white;
}

/* Responsive for new pages */
@media (max-width: 1024px) {
    .calculator-wrapper {
        grid-template-columns: 1fr;
    }
    
    .calculator-steps {
        padding: 2rem;
    }
    
    .step-item {
        padding: 1.2rem 1.5rem;
        gap: 1rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .step-content h4 {
        font-size: 1.1rem;
    }
    
    .step-content p {
        font-size: 0.85rem;
    }
    
    .step-divider {
        width: 40px;
    }
    
    .coverage-map-section {
        grid-template-columns: 1fr;
        padding: 2rem;
    }
    
    .map-placeholder {
        min-height: 300px;
    }
    
    .map-placeholder i {
        font-size: 4rem;
    }
    
    .map-placeholder p {
        font-size: 1.1rem;
    }
    
    .services-tabs {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-showcase-header {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    
    .service-badge {
        margin: 0 auto;
    }
    
    .service-price-tag {
        margin: 0 auto;
    }
    
    .service-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-cta-box {
        flex-direction: column;
        text-align: center;
    }
    
    .service-cta-box .btn {
        width: 100%;
    }
    
    .service-detail-card {
        grid-template-columns: 100px 1fr;
        gap: 2rem;
        padding: 2.5rem;
    }
    
    .service-detail-icon {
        width: 100px;
        height: 100px;
    }
    
    .service-detail-icon i {
        font-size: 3.5rem;
    }
    
    .service-detail-content h2 {
        font-size: 1.8rem;
    }
    
    .coverage-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .regions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .continents-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 60px 0;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .calculator-steps {
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .step-item {
        width: 100%;
        padding: 1rem;
    }
    
    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .step-content h4 {
        font-size: 1rem;
    }
    
    .step-content p {
        font-size: 0.8rem;
    }
    
    .step-divider {
        width: 3px;
        height: 30px;
        margin: 0;
    }
    
    .coverage-map-section {
        padding: 1.5rem;
        gap: 2rem;
    }
    
    .map-placeholder {
        min-height: 250px;
        padding: 2rem;
    }
    
    .map-placeholder i {
        font-size: 3rem;
    }
    
    .map-placeholder p {
        font-size: 1rem;
    }
    
    .coverage-badge {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .highlight-card {
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .highlight-icon {
        width: 60px;
        height: 60px;
    }
    
    .highlight-icon i {
        font-size: 1.8rem;
    }
    
    .highlight-content h4 {
        font-size: 1.2rem;
    }
    
    .highlight-content p {
        font-size: 0.9rem;
    }
    
    .services-tabs {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        padding: 0.8rem;
    }
    
    .tab-btn {
        padding: 1.2rem 1rem;
        flex-direction: row;
        justify-content: center;
    }
    
    .tab-btn i {
        font-size: 1.5rem;
    }
    
    .tab-btn span {
        font-size: 0.95rem;
    }
    
    .service-showcase-header {
        padding: 2rem;
    }
    
    .service-badge {
        width: 80px;
        height: 80px;
    }
    
    .service-badge i {
        font-size: 2.5rem;
    }
    
    .service-title-group h2 {
        font-size: 2rem;
    }
    
    .service-subtitle {
        font-size: 1rem;
    }
    
    .price-amount {
        font-size: 2rem;
    }
    
    .service-showcase-body {
        padding: 2rem;
    }
    
    .service-features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-item-detailed {
        padding: 1.5rem;
    }
    
    .feature-icon-small {
        width: 55px;
        height: 55px;
    }
    
    .feature-icon-small i {
        font-size: 1.5rem;
    }
    
    .feature-content h4 {
        font-size: 1.1rem;
    }
    
    .service-cta-box {
        padding: 2rem;
    }
    
    .cta-content h3 {
        font-size: 1.5rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .service-detail-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 2rem;
    }
    
    .service-detail-icon {
        margin: 0 auto 1.5rem;
        width: 90px;
        height: 90px;
    }
    
    .service-detail-icon i {
        font-size: 3rem;
    }
    
    .service-detail-content h2 {
        font-size: 1.6rem;
    }
    
    .service-detail-content p {
        font-size: 1rem;
    }
    
    .service-detail-content ul li {
        justify-content: center;
    }
    
    .service-pricing {
        justify-content: center;
    }
    
    .price {
        font-size: 2rem;
    }
    
    .coverage-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .coverage-stat {
        padding: 2rem 1.5rem;
    }
    
    .coverage-stat i {
        font-size: 2.5rem;
    }
    
    .coverage-stat h3 {
        font-size: 2rem;
    }
    
    .regions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .region-card {
        padding: 2rem;
    }
    
    .continents-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .dimensions-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .calculator-form-container {
        padding: 2rem;
    }
    
    .calculator-result {
        padding: 2rem;
    }
    
    .result-card {
        padding: 2rem;
    }
    
    .result-card h3 {
        font-size: 1.6rem;
    }
    
    .result-item.total .value {
        font-size: 1.6rem;
    }
    
    .info-card {
        padding: 2rem;
    }
    
    .contact-info-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .contact-hero-banner {
        padding: 2.5rem 2rem;
        margin-bottom: 3rem;
    }
    
    .contact-hero-content h2 {
        font-size: 2rem;
    }
    
    .contact-hero-content p {
        font-size: 1rem;
    }
    
    .contact-hero-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    
    .hero-stat-item {
        padding: 1rem 1.5rem;
    }
    
    .hero-stat-item i {
        font-size: 1.5rem;
    }
    
    .hero-stat-item span {
        font-size: 1rem;
    }
    
    .contact-main-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info-section {
        padding: 2.5rem;
    }
    
    .contact-info-header h3 {
        font-size: 1.8rem;
    }
    
    .contact-method-item {
        padding: 1.5rem;
    }
    
    .method-icon {
        width: 60px;
        height: 60px;
    }
    
    .method-icon i {
        font-size: 1.8rem;
    }
    
    .method-details h4 {
        font-size: 1.2rem;
    }
    
    .method-link {
        font-size: 1rem;
    }
    
    .social-links-large {
        grid-template-columns: 1fr;
    }
    
    .form-card-header {
        padding: 2.5rem 2rem;
    }
    
    .form-icon {
        width: 70px;
        height: 70px;
    }
    
    .form-icon i {
        font-size: 2rem;
    }
    
    .form-card-header h3 {
        font-size: 1.8rem;
    }
    
    .contact-form-modern {
        padding: 2rem;
    }
    
    .contact-info-card {
        padding: 2rem 1.5rem;
    }
    
    .contact-card-icon {
        width: 70px;
        height: 70px;
    }
    
    .contact-card-icon i {
        font-size: 2rem;
    }
    
    .contact-info-card h3 {
        font-size: 1.3rem;
    }
    
    .contact-form-wrapper {
        padding: 2rem;
    }
    
    .contact-form-header h2 {
        font-size: 1.8rem;
    }
    
    .methods-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .method-card {
        padding: 2.5rem;
    }
    
    .method-card i {
        font-size: 3.5rem;
    }
    
    .working-hours-card {
        padding: 2rem;
    }
    
    .working-hours-header i {
        font-size: 3rem;
    }
    
    .working-hours-header h2 {
        font-size: 1.8rem;
    }
    
    .hours-item {
        padding: 1.2rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 40px 0;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .page-header p {
        font-size: 0.95rem;
    }
    
    .service-detail-card {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .service-detail-icon {
        width: 80px;
        height: 80px;
    }
    
    .service-detail-icon i {
        font-size: 2.5rem;
    }
    
    .service-detail-content h2 {
        font-size: 1.4rem;
    }
    
    .service-detail-content p {
        font-size: 0.95rem;
    }
    
    .service-detail-content ul li {
        font-size: 0.9rem;
        padding: 0.6rem 0;
    }
    
    .price {
        font-size: 1.8rem;
    }
    
    .feature-box {
        padding: 2rem 1.5rem;
    }
    
    .feature-box i {
        font-size: 3rem;
    }
    
    .feature-box h3 {
        font-size: 1.3rem;
    }
    
    .feature-box p {
        font-size: 0.95rem;
    }
    
    .coverage-stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .coverage-stat {
        padding: 1.5rem;
    }
    
    .coverage-stat i {
        font-size: 2rem;
    }
    
    .coverage-stat h3 {
        font-size: 1.8rem;
    }
    
    .coverage-stat p {
        font-size: 0.9rem;
    }
    
    .region-card {
        padding: 1.5rem;
    }
    
    .region-icon {
        width: 60px;
        height: 60px;
    }
    
    .region-icon i {
        font-size: 1.8rem;
    }
    
    .region-card h3 {
        font-size: 1.3rem;
    }
    
    .region-card ul li {
        font-size: 0.9rem;
    }
    
    .continent-header {
        padding: 1.5rem;
    }
    
    .continent-header i {
        font-size: 2rem;
    }
    
    .continent-header h3 {
        font-size: 1.3rem;
    }
    
    .continent-details {
        padding: 1.5rem;
    }
    
    .countries-count {
        font-size: 1.1rem;
    }
    
    .countries-list li {
        font-size: 0.9rem;
    }
    
    .calculator-form-container {
        padding: 1.5rem;
    }
    
    .form-group label {
        font-size: 0.95rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px;
        font-size: 0.95rem;
    }
    
    .btn-large {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .calculator-result {
        padding: 1.5rem;
    }
    
    .result-card {
        padding: 1.5rem;
    }
    
    .result-card h3 {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }
    
    .result-item {
        padding: 1rem 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .result-item.total {
        padding-top: 1.5rem;
        margin-top: 0.5rem;
    }
    
    .result-item .label {
        font-size: 0.95rem;
    }
    
    .result-item .value {
        font-size: 1.1rem;
    }
    
    .result-item.total .value {
        font-size: 1.6rem;
    }
    
    .info-card {
        padding: 1.5rem;
    }
    
    .info-card i {
        font-size: 1.8rem;
    }
    
    .info-card h3 {
        font-size: 1.3rem;
    }
    
    .info-card ul li {
        font-size: 0.9rem;
        padding: 0.6rem 0;
    }
    
    .contact-info-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-hero-banner {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    .contact-hero-content h2 {
        font-size: 1.6rem;
    }
    
    .contact-hero-content p {
        font-size: 0.95rem;
    }
    
    .contact-hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-stat-item {
        width: 100%;
        justify-content: center;
        padding: 1rem;
    }
    
    .hero-stat-item i {
        font-size: 1.3rem;
    }
    
    .hero-stat-item span {
        font-size: 0.95rem;
    }
    
    .contact-info-section {
        padding: 2rem 1.5rem;
    }
    
    .contact-info-header h3 {
        font-size: 1.5rem;
    }
    
    .contact-info-header p {
        font-size: 0.9rem;
    }
    
    .contact-methods-list {
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .contact-method-item {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
    }
    
    .method-icon {
        width: 55px;
        height: 55px;
        margin: 0 auto;
    }
    
    .method-icon i {
        font-size: 1.5rem;
    }
    
    .method-details h4 {
        font-size: 1.1rem;
    }
    
    .method-details p {
        font-size: 0.9rem;
    }
    
    .method-link {
        font-size: 0.95rem;
    }
    
    .social-connect h4 {
        font-size: 1.1rem;
        text-align: center;
    }
    
    .social-link-item {
        padding: 1rem;
        justify-content: center;
    }
    
    .social-link-item i {
        font-size: 1.3rem;
    }
    
    .social-link-item span {
        font-size: 0.95rem;
    }
    
    .form-card {
        margin: 0.5rem;
    }
    
    .form-card-header {
        padding: 2rem 1.5rem;
    }
    
    .form-icon {
        width: 65px;
        height: 65px;
    }
    
    .form-icon i {
        font-size: 1.8rem;
    }
    
    .form-card-header h3 {
        font-size: 1.5rem;
    }
    
    .form-card-header p {
        font-size: 0.9rem;
    }
    
    .contact-form-modern {
        padding: 1.5rem;
    }
    
    .contact-info-card {
        padding: 1.5rem;
    }
    
    .contact-card-icon {
        width: 65px;
        height: 65px;
    }
    
    .contact-card-icon i {
        font-size: 1.8rem;
    }
    
    .contact-info-card h3 {
        font-size: 1.2rem;
    }
    
    .contact-info-card p {
        font-size: 0.9rem;
    }
    
    .contact-link {
        font-size: 0.95rem;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .contact-form-header {
        margin-bottom: 2rem;
    }
    
    .contact-form-header h2 {
        font-size: 1.5rem;
    }
    
    .contact-form-header p {
        font-size: 0.9rem;
    }
    
    .method-card {
        padding: 2rem 1.5rem;
    }
    
    .method-card i {
        font-size: 3rem;
    }
    
    .method-card h3 {
        font-size: 1.3rem;
    }
    
    .method-card p {
        font-size: 0.9rem;
    }
    
    .working-hours-card {
        padding: 1.5rem;
    }
    
    .working-hours-header {
        margin-bottom: 2rem;
    }
    
    .working-hours-header i {
        font-size: 2.5rem;
    }
    
    .working-hours-header h2 {
        font-size: 1.5rem;
    }
    
    .hours-item {
        padding: 1rem;
    }
    
    .hours-item .day {
        font-size: 1rem;
    }
    
    .hours-item .time {
        font-size: 0.95rem;
    }
}
