/* Mobile-First CSS - Base 375px */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #d4af37;
    --text-color: #333;
    --text-light: #666;
    --bg-light: #f8f8f8;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

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

/* Header */
.header {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.98);
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 45px;
    width: auto;
    transition: var(--transition);
}

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

.nav {
    display: none;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-list a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

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

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

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

.burger-menu {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
}

.burger-menu span {
    width: 25px;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav ul {
    list-style: none;
    text-align: center;
}

.mobile-nav ul li {
    margin: 20px 0;
}

.mobile-nav ul li a {
    color: var(--white);
    text-decoration: none;
    font-size: 24px;
    font-weight: 500;
    display: block;
    padding: 15px;
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.mobile-nav ul li a:hover,
.mobile-nav ul li a.active {
    color: var(--secondary-color);
    border-left-color: var(--secondary-color);
    padding-left: 25px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2d2d2d 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

.hero h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
    font-size: 16px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

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

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    min-width: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #c19d26 100%);
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #c19d26 0%, #a88a1f 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.4);
}

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

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

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2d2d2d 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

.page-header h1 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out;
}

.page-header p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Sections */
section {
    padding: 50px 0;
}

h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--primary-color);
    text-align: center;
}

h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* Services Overview */
.services-overview {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 30px;
}

.service-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.service-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.service-card p {
    color: var(--text-light);
    font-size: 15px;
}

/* Why Us */
.why-us {
    background: var(--bg-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 30px;
}

.benefit-item {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border-left: 4px solid var(--secondary-color);
}

.benefit-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.12);
}

.benefit-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.benefit-item p {
    color: var(--text-light);
    font-size: 15px;
}

/* SEO Content */
.seo-content {
    background: var(--white);
}

.seo-content h2 {
    text-align: left;
    margin-bottom: 20px;
}

.seo-content h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 20px;
}

.seo-content p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: var(--text-color);
}

.seo-content ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.seo-content li {
    margin-bottom: 8px;
    color: var(--text-light);
}

/* Regions */
.regions {
    background: var(--bg-light);
}

.regions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.region-item {
    background: linear-gradient(135deg, var(--white) 0%, var(--bg-light) 100%);
    padding: 25px;
    text-align: center;
    border-radius: 12px;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.region-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.2);
    border-color: var(--secondary-color);
    background: linear-gradient(135deg, var(--white) 0%, rgba(212, 175, 55, 0.05) 100%);
}

/* FAQ */
.faq {
    background: var(--white);
}

.faq-list {
    margin-top: 30px;
}

.faq-item {
    background: var(--white);
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 12px;
    border-left: 4px solid var(--secondary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
}

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.faq-item p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
}

/* Service Detail */
.service-detail {
    padding: 60px 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    transition: var(--transition);
}

.service-detail:nth-child(even) {
    background: var(--bg-light);
}

.service-detail:nth-child(odd) {
    background: var(--white);
}

.service-detail:last-child {
    border-bottom: none;
}

.service-detail .container {
    max-width: 900px;
}

.service-detail h2 {
    text-align: left;
    margin-bottom: 25px;
    font-size: 32px;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 15px;
}

.service-detail h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #c19d26 100%);
    border-radius: 2px;
}

.service-detail p {
    margin-bottom: 20px;
    line-height: 1.9;
    color: var(--text-color);
    font-size: 17px;
}

.service-detail ul {
    margin: 30px 0;
    padding-left: 0;
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.service-detail li {
    padding: 15px 20px;
    background: var(--white);
    border-left: 4px solid var(--secondary-color);
    border-radius: 8px;
    color: var(--text-color);
    line-height: 1.7;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;
    padding-left: 50px;
}

.service-detail li::before {
    content: '✓';
    position: absolute;
    left: 18px;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 18px;
}

.service-detail li:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
    border-left-color: #c19d26;
}

.service-detail .btn {
    margin-top: 30px;
    display: inline-block;
}

/* About Content */
.about-content {
    background: var(--white);
    padding: 60px 0;
}

.about-content .container {
    max-width: 900px;
}

.about-content h2 {
    text-align: left;
    margin-bottom: 30px;
    font-size: 32px;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 15px;
}

.about-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #c19d26 100%);
    border-radius: 2px;
}

.about-content h3 {
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 24px;
    color: var(--primary-color);
    position: relative;
    padding-left: 20px;
}

.about-content h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 24px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #c19d26 100%);
    border-radius: 2px;
}

.about-content p {
    margin-bottom: 20px;
    line-height: 1.9;
    color: var(--text-color);
    font-size: 17px;
}

.about-content ul {
    margin: 30px 0;
    padding-left: 0;
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.about-content li {
    padding: 20px 25px;
    background: linear-gradient(135deg, var(--white) 0%, var(--bg-light) 100%);
    border-left: 4px solid var(--secondary-color);
    border-radius: 12px;
    color: var(--text-color);
    line-height: 1.8;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;
}

.about-content li strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 8px;
    font-size: 18px;
}

.about-content li:hover {
    transform: translateX(8px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.2);
    border-left-color: #c19d26;
}

/* Contact Info */
.contact-info {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--white) 100%);
    padding: 60px 0;
    position: relative;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.contact-info .container {
    position: relative;
    z-index: 1;
}

.contact-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.contact-item {
    text-align: center;
    background: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #c19d26 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.2);
    border-color: var(--secondary-color);
}

.contact-item:hover::before {
    transform: scaleX(1);
}

.contact-item h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.contact-item h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.contact-item p {
    color: var(--text-color);
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.7;
}

.contact-item a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    font-size: 18px;
    display: inline-block;
}

.contact-item a:hover {
    color: #c19d26;
    transform: scale(1.05);
}

.whatsapp-link {
    display: inline-block;
    margin-top: 15px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #25D366 0%, #20ba5a 100%);
    color: var(--white) !important;
    border-radius: 10px;
    text-decoration: none !important;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: var(--transition);
}

.whatsapp-link:hover {
    background: linear-gradient(135deg, #20ba5a 0%, #1da851 100%);
    text-decoration: none !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

/* Contact Form */
.contact-form-section {
    background: linear-gradient(135deg, var(--white) 0%, var(--bg-light) 100%);
    padding: 80px 0;
    position: relative;
}

.contact-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.contact-form-section .container {
    position: relative;
    z-index: 1;
}

.contact-form-section h2 {
    text-align: center;
    margin-bottom: 15px;
    font-size: 36px;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    width: 100%;
    padding-bottom: 20px;
}

.contact-form-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #c19d26 100%);
    border-radius: 2px;
}

.form-intro {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 40px;
    font-size: 17px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 30px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 18px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    min-height: 50px;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
    opacity: 0.6;
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 45px;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 15px;
    color: var(--white);
}

.footer-section p {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

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

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

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.social-links a {
    padding: 8px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    font-size: 14px;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* Floating Buttons */
.floating-btn {
    position: fixed;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--white);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    right: 20px;
    font-size: 26px;
    min-width: 60px;
    min-height: 60px;
    animation: pulse 2s infinite;
}

.floating-btn:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.4);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 6px 35px rgba(0, 0, 0, 0.5);
    }
}

.floating-whatsapp {
    bottom: 90px;
    background: linear-gradient(135deg, #25D366 0%, #20ba5a 100%);
}

.floating-whatsapp:hover {
    background: linear-gradient(135deg, #20ba5a 0%, #1da851 100%);
}

.floating-call {
    bottom: 20px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #c19d26 100%);
}

.floating-call:hover {
    background: linear-gradient(135deg, #c19d26 0%, #a88a1f 100%);
}

.floating-btn span {
    display: block;
}

/* Tablet - 768px and up */
@media (min-width: 768px) {
    .nav {
        display: block;
    }

    .burger-menu {
        display: none;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-cta {
        flex-direction: row;
        justify-content: center;
    }

    .page-header h1 {
        font-size: 42px;
    }

    .page-header p {
        font-size: 20px;
    }

    .service-detail h2 {
        font-size: 36px;
    }

    .service-detail ul {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-details {
        grid-template-columns: repeat(3, 1fr);
    }

    .about-content ul {
        grid-template-columns: repeat(2, 1fr);
    }

    h2 {
        font-size: 32px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .regions-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-details {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }

    .floating-btn {
        right: 30px;
    }

    .floating-whatsapp {
        bottom: 100px;
    }

    .floating-call {
        bottom: 30px;
    }
}

/* Desktop - 1024px and up */
@media (min-width: 1024px) {
    .container {
        padding: 0 40px;
    }

    .hero {
        padding: 100px 0;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .page-header {
        padding: 120px 0;
    }

    .page-header h1 {
        font-size: 52px;
    }

    .page-header p {
        font-size: 22px;
    }

    .service-detail {
        padding: 80px 0;
    }

    .service-detail h2 {
        font-size: 40px;
    }

    .service-detail ul {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .about-content ul {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .about-content h2 {
        font-size: 40px;
    }

    .about-content h3 {
        font-size: 28px;
    }

    .contact-form {
        padding: 60px 50px;
    }

    .contact-form-section h2 {
        font-size: 42px;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .regions-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    section {
        padding: 80px 0;
    }

    .floating-btn {
        width: 64px;
        height: 64px;
        right: 40px;
        font-size: 28px;
        min-width: 64px;
        min-height: 64px;
    }

    .floating-whatsapp {
        bottom: 120px;
    }

    .floating-call {
        bottom: 40px;
    }
}

/* Image Lazy Loading */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

