/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    position: relative;
}

/* Ensure all sections are visible */
section {
    position: relative;
    z-index: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.nav-logo h2 {
    color: #d4af37;
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #d4af37;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #d4af37;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #f39c12 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.15"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="300" fill="url(%23a)"/><circle cx="800" cy="800" r="400" fill="url(%23a)"/></svg>');
    opacity: 0.4;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 20px 2rem 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
    transform: none;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.highlight {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.hero-content p {
    font-size: 1.2rem;
    color: #ffffff;
    margin: 20px auto 30px auto; /* Margin atas dan bawah 20px/30px, kiri dan kanan auto untuk centering */
    max-width: 600px; /* Lebarkan batas maksimum teks di desktop */
    line-height: 1.8;
}


.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #fbbf24;
    color: #1f2937;
}

.btn-primary:hover {
    background: #f59e0b;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #d4af37;
    transform: translateY(-2px);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.hero-card i {
    font-size: 4rem;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.hero-card p {
    opacity: 0.9;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
}

.section-header p {
    font-size: 1.2rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: #f8fafc;
    position: relative;
    z-index: 1;
    clear: both;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.about-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.card-icon i {
    font-size: 2rem;
    color: white;
}

.about-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.about-card p {
    color: #6b7280;
    line-height: 1.6;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1.1rem;
    color: #6b7280;
    font-weight: 500;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: white;
    position: relative;
    z-index: 1;
    clear: both;
}

.services-grid {
    display: grid;
    /* Tetap menggunakan grid untuk responsif */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Dikecilkan sedikit agar lebih fleksibel */
    gap: 2rem;
}

.service-card {
    /* Hapus padding dari service card, kita akan berikan padding hanya ke konten teks */
    background: #f8fafc;
    /* padding: 2.5rem; <--- DIHAPUS */
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    overflow: hidden; /* Penting agar gambar membulat di sudut atas kartu */
    display: flex; /* Tambahkan flex untuk menata konten vertikal */
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: white;
}

/* --- Styling untuk Gambar Penuh di Atas Card --- */
.service-image {
    width: 100%;
    /* Tentukan tinggi gambar agar seragam, misalnya 200px. Jika tidak, hapus height. */
    height: 200px; 
    overflow: hidden; /* Penting untuk menjaga rasio dan memotong jika perlu */
    margin-bottom: 1.5rem; /* Jarak antara gambar dan teks */
}

.service-image img {
    width: 100%; /* Membuat gambar selebar kartu */
    height: 100%; /* Membuat gambar setinggi div container */
    object-fit: cover; /* Memastikan gambar menutupi seluruh area tanpa distorsi */
    display: block;
}
/* ------------------------------------------------ */

/* --- Styling Konten Teks (Tambahkan padding di sini) --- */
.service-card h3,
.service-card p {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
    margin-top: 0;
}

.service-card p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 2.5rem; /* Tambahkan padding bawah pada paragraf terakhir */
}
/* ------------------------------------------------ */


/* --- Bagian .service-icon yang Dihapus/Diabaikan --- */
/*
.service-icon {
    DISPLAY DIBATALKAN/DIHAPUS
}
.service-icon i {
    DISPLAY DIBATALKAN/DIHAPUS
}
*/
/* Team Section */
.team {
    padding: 6rem 0;
    background: #f8fafc;
    position: relative;
    z-index: 1;
    clear: both;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.team-card {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    border: 4px solid #e5e7eb;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.team-avatar:hover {
    transform: scale(1.05);
    border-color: #eba225de;
    box-shadow: 0 12px 35px rgba(85, 74, 10, 0.2);
}

.team-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.team-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.team-role {
    color: #ebb325;
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-description {
    color: #6b7280;
    line-height: 1.6;
    text-align: left;
}

/* SEO Content Section */
.seo-content {
    padding: 6rem 0;
    background: white;
    position: relative;
    z-index: 1;
    clear: both;
}

.seo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.seo-card {
    background: #f8fafc;
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.seo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    background: white;
}

.seo-card h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.seo-card p {
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.seo-card ul {
    list-style: none;
    padding: 0;
}

.seo-card ul li {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.seo-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.seo-card strong {
    color: #d4af37;
    font-weight: 600;
}

/* Regulations Section */
.regulations {
    padding: 6rem 0;
    background: #f8fafc;
    position: relative;
    z-index: 1;
    clear: both;
}

.regulations-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.regulation-category {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e5e7eb;
}

.category-header i {
    font-size: 2rem;
    color: #d4af37;
    background: rgba(212, 175, 55, 0.1);
    padding: 1rem;
    border-radius: 12px;
}

.category-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
}

.regulation-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.regulation-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.regulation-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    background: white;
}

.regulation-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.regulation-icon i {
    font-size: 1.2rem;
    color: white;
}

.regulation-content {
    flex: 1;
}

.regulation-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.regulation-content p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.regulation-date {
    font-size: 0.9rem;
    color: #9ca3af;
    font-weight: 500;
}

.regulation-action {
    flex-shrink: 0;
}

.btn-reg {
    padding: 8px 16px;
    background: #d4af37;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-reg:hover {
    background: #b8941f;
    transform: translateY(-1px);
}

.regulations-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    margin-top: 2rem;
}

.regulations-notice {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    flex: 1;
}

.regulations-notice i {
    color: #f59e0b;
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.regulations-notice p {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

.regulations-cta {
    flex-shrink: 0;
}
/* --- Global Calendar Section Styling --- */
.tax-calendar-slider {
    padding: 4rem 0;
    background: #f8fafc;
}

.tax-calendar-slider .section-header {
    text-align: center;
    margin-bottom: 2rem;
}

/* --- Controls (Slider) Styling --- */
.calendar-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto 1.5rem;
}

.calendar-controls h3 {
    font-size: 1.8rem;
    color: #1f2937;
    font-weight: 600;
}

.control-btn {
    background: none;
    border: 1px solid #e5e7eb;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.control-btn:hover {
    background-color: #e5e7eb;
}

/* --- Calendar Grid Styling --- */
.calendar-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.day-names {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    background-color: #f0f4f8;
    font-weight: 600;
    color: #4b5563;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.day-names > div {
    text-align: center;
    font-size: 0.9rem;
}

/* Grid Kontainer Tanggal (Hanya 7 kolom untuk 1 minggu) */
.date-grid-container {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
}

.calendar-day {
    min-height: 120px; /* Tinggi untuk menunjukkan konten */
    padding: 8px;
    border: 1px solid #e5e7eb;
    border-top: none;
    border-left: none;
    position: relative;
    /* Hilangkan border kanan pada hari Sabtu (ke-7) */
    /* Ini perlu ditangani di JS, atau menggunakan nth-child(7n) */
}

.day-number {
    font-weight: 700;
    font-size: 1.2rem;
    color: #1f2937;
    text-align: left;
    margin-bottom: 5px;
}

/* --- Styling Event (JS akan menambahkan kelas ini) --- */
.due-info {
    font-size: 0.75rem;
    padding: 3px 5px;
    margin-top: 3px;
    border-radius: 3px;
    font-weight: 500;
    line-height: 1.3;
}

/* Kelas untuk event spesifik (diberikan oleh JS) */
.event-pph {
    background-color: #fef3c7; /* Kuning PPh */
    color: #92400e;
    border-left: 3px solid #f59e0b;
}

.event-ppn {
    background-color: #e0f2fe; /* Biru PPN */
    color: #0c4a6e;
    border-left: 3px solid #38bdf8;
}

.event-lapor-spt {
    background-color: #fae8ff; /* Ungu Lapor */
    color: #701a75;
    border-left: 3px solid #a855f7;
}

.event-holiday {
    background-color: #fee2e2; /* Merah Libur */
    color: #991b1b;
    border-left: 3px solid #ef4444;
}

/* --- Legenda Styling --- */
.calendar-legend {
    padding: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    background-color: #f0f4f8;
    border-top: 1px solid #e5e7eb;
}

.legend-item {
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    color: #4b5563;
}

.legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 5px;
}

.dot-pph { background-color: #f59e0b; }
.dot-ppn { background-color: #38bdf8; }
.dot-lapor { background-color: #a855f7; }
.dot-holiday { background-color: #ef4444; }
/* Contact Section */
.contact {
    padding: 6rem 0;
    background: white;
    position: relative;
    z-index: 1;
    clear: both;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.office-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.office-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.office-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f3f4f6;
}

.office-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.office-icon i {
    font-size: 1.5rem;
    color: white;
}

.office-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.office-type {
    color: #6b7280;
    font-size: 1rem;
    font-weight: 500;
}

.office-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.office-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.office-icon-small {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.office-icon-small i {
    color: white;
    font-size: 1rem;
}

.office-info h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #1f2937;
}

.office-info p {
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

.address-link, .whatsapp-link {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.3s ease;
}

.address-link:hover {
    color: #d4af37;
    text-decoration: underline;
}

.whatsapp-link:hover {
    color: #25d366;
    text-decoration: underline;
}

.contact-form-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid #e5e7eb;
}

.contact-form-section .section-header h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.contact-form-section .section-header p {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

.contact-form {
    background: #f8fafc;
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #d4af37;
}

.footer-logo p {
    opacity: 0.8;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #d4af37;
}

.footer-social {
    display: flex;
    gap: 1.25rem;
    align-items: center;
}

.footer-social a {
    color: white;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #d4af37;
}

.footer-social i {
    font-size: 1.1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 5.5rem 20px 1.5rem 20px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .about-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .office-card {
        padding: 1.5rem;
    }

    .office-header {
        margin-bottom: 1.5rem;
    }

    .office-details {
        gap: 1rem;
    }

    .contact-form-section {
        margin-top: 3rem;
        padding-top: 2rem;
    }

    .contact-form {
        padding: 2rem;
        max-width: 100%;
    }

    .regulations-footer {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .regulations-notice {
        flex-direction: column;
        text-align: center;
    }

    .regulation-item {
        flex-direction: column;
        text-align: center;
    }

    .regulation-action {
        align-self: center;
    }

    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
        flex-wrap: wrap;
    }

    .stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .stat-item h3 {
        font-size: 2rem;
    }

    .regulation-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .regulation-content {
        text-align: center;
    }

    .seo-grid {
        grid-template-columns: 1fr;
    }

    .seo-card {
        padding: 2rem;
    }

    .seo-card h2 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .hero-description {
        font-size: 1rem;
        line-height: 1.6;
    }

    .hero-container {
        padding: 5rem 20px 1rem 20px;
        gap: 1.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 250px;
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .category-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .category-header h3 {
        font-size: 1.3rem;
    }
}

/* Extra small screens */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.1;
        margin-bottom: 0.8rem;
    }

    .hero-description {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .hero-container {
        padding: 4.8rem 15px 0.8rem 15px;
        gap: 1rem;
    }

    .nav-logo-img {
        height: 45px;
    }

    .nav-logo h2 {
        font-size: 1.3rem;
    }

    .whatsapp-button {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .whatsapp-dropdown {
        bottom: 60px;
        min-width: 100px;
    }

    .whatsapp-option {
        padding: 0.6rem;
        font-size: 0.85rem;
    }

    /* Mobile scrolled position */
    .whatsapp-float.scrolled {
        bottom: 80px;
    }

    .back-to-top {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Success Message */
.success-message {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.success-content {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    max-width: 500px;
    margin: 0 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
}

.success-content i {
    font-size: 4rem;
    color: #10b981;
    margin-bottom: 1rem;
}

.success-content h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.success-content p {
    color: #6b7280;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { 
        opacity: 0;
        transform: translateY(30px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

/* Floating WhatsApp Button - Dynamic Position */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    transition: bottom 0.3s ease;
}

/* When scrolled down, move WhatsApp button up to avoid back to top */
.whatsapp-float.scrolled {
    bottom: 90px;
}

/* Back to Top Button - Below WhatsApp */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: #d4af37;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top:hover {
    background: #b8941f;
    transform: scale(1.1);
}

.whatsapp-button {
    width: 60px;
    height: 60px;
    background: #25d366;
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-button:hover {
    background: #20ba5a;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-dropdown {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    padding: 0.5rem;
    min-width: 120px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.whatsapp-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.whatsapp-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    font-size: 0.9rem;
    color: #374151;
}

.whatsapp-option:hover {
    background: #f3f4f6;
}

.whatsapp-option i {
    color: #25d366;
    font-size: 0.8rem;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #d4af37;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #b8941f;
}
