/* ==================== BASE STYLES ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #fafafa;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* ==================== NAVBAR (Matching Home Style) ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    border-bottom: 2px solid #FFE0B2;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    font-size: 32px;
    animation: float 3s ease-in-out infinite;
}

.logo h1 {
    font-size: 24px;
    background: linear-gradient(135deg, #F57C00, #FF7043);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.navbar nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #3E2723;
    font-weight: 500;
    padding: 10px 0;
    position: relative;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link i {
    font-size: 18px;
    color: #FFA726;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #FFA726, #FF7043);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
    color: #F57C00;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-btn {
    background: linear-gradient(135deg, #FFA726, #FF7043);
    color: #FFFFFF;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(255, 167, 38, 0.3);
    text-decoration: none;
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 167, 38, 0.4);
}

/* HAMBURGER MENU */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    width: 30px;
    height: 20px;
    justify-content: space-between;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background: #3E2723;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ==================== HERO SECTION ==================== */
.hero-section {
    min-height: 500px;
    background: linear-gradient(135deg, rgba(244, 162, 97, 0.15), rgba(231, 111, 81, 0.15)),
            #fff5eb;
    padding: 120px 60px 80px;
    margin-top: 76px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(244, 162, 97, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    color: #2d3436;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 18px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 35px;
    max-width: 550px;
}

.hero-stats {
    display: flex;
    gap: 35px;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, #f4a261 0%, #e76f51 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: #888;
    font-weight: 500;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s backwards;
}

.image-frame {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #fff5eb 0%, #ffe8d6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(244, 162, 97, 0.2);
}

.honey-jar {
    width: 200px;
    height: 200px;
    position: relative;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #888;
    font-size: 14px;
    animation: fadeIn 1s ease-in 1s backwards;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, #f4a261, transparent);
    margin: 10px auto 0;
    animation: scrollDown 1.5s ease-in-out infinite;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scrollDown {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(10px); opacity: 0.5; }
}

/* ==================== CONTACT SECTION ==================== */
.contact-section {
    padding: 80px 60px;
    background: linear-gradient(135deg, #ffffff 0%, #fff5eb 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: #2d3436;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #f4a261 0%, #e76f51 100%);
    margin: 20px auto 0;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 17px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-layout {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.card-header i {
    font-size: 28px;
    color: #f4a261;
}

.card-header h4 {
    font-size: 24px;
    font-weight: 600;
    color: #2d3436;
}

/* INFO SIDEBAR */
.info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 100%;
}

.info-card {
    background: white;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 20px;
}

.contact-method {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.method-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-icon.location { background: linear-gradient(135deg, #FFE8D6, #FFF5EB); }
.method-icon.phone { background: linear-gradient(135deg, #E8F5E9, #F1F8E9); }
.method-icon.email { background: linear-gradient(135deg, #E3F2FD, #E1F5FE); }
.method-icon.hours { background: linear-gradient(135deg, #FCE4EC, #F3E5F5); }

.method-icon i {
    font-size: 22px;
    color: #f4a261;
}

.method-info h5 {
    font-size: 16px;
    font-weight: 600;
    color: #2d3436;
    margin-bottom: 6px;
}

.method-info p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.social-section {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 2px solid #f0f0f0;
}

.social-section h5 {
    font-size: 16px;
    font-weight: 600;
    color: #2d3436;
    margin-bottom: 15px;
    text-align: center;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.social-btn {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 18px;
}

.social-btn.facebook { background: #1877F2; color: white; }
.social-btn.instagram { background: linear-gradient(135deg, #E4405F, #C13584); color: white; }
.social-btn.whatsapp { background: #25D366; color: white; }

.social-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.quick-contact {
    background: linear-gradient(135deg, #f4a261 0%, #e76f51 100%);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    color: white;
}

.quick-contact h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.quick-contact p {
    font-size: 14px;
    opacity: 0.95;
    margin-bottom: 20px;
}

.call-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: white;
    color: #e76f51;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.call-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* ==================== MAP SECTION ==================== */
.map-section {
    padding: 80px 60px;
    background: linear-gradient(135deg, #fff5eb 0%, #ffffff 100%);
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
}

.map-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 0;
}

.map-view {
    position: relative;
    min-height: 450px;
}

.map-view iframe {
    width: 100%;
    height: 100%;
    min-height: 450px;
    border: none;
}

.map-details {
    padding: 40px 35px;
    background: linear-gradient(135deg, #fff9f5 0%, #fff5eb 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.detail-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

.detail-header i {
    font-size: 24px;
    color: #f4a261;
}

.detail-header h5 {
    font-size: 20px;
    font-weight: 600;
    color: #2d3436;
}

.detail-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.detail-list li {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 18px;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.detail-list i {
    color: #f4a261;
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.direction-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.direction-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.direction-btn.primary {
    background: linear-gradient(135deg, #f4a261 0%, #e76f51 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(231, 111, 81, 0.2);
}

.direction-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(231, 111, 81, 0.3);
}

.direction-btn.secondary {
    background: white;
    color: #e76f51;
    border: 2px solid #e76f51;
}

.direction-btn.secondary:hover {
    background: #e76f51;
    color: white;
    transform: translateY(-2px);
}

/* ==================== FAQ SECTION ==================== */
.faq-section {
    padding: 80px 60px;
    background: linear-gradient(135deg, #ffffff 0%, #fff5eb 100%);
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.faq-item:hover {
    border-color: rgba(244, 162, 97, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(231, 111, 81, 0.1);
}

.faq-item.active {
    border-color: #f4a261;
}

.faq-question {
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    background: white;
    transition: background 0.3s ease;
}

.faq-item.active .faq-question {
    background: linear-gradient(135deg, #f4a261 0%, #e76f51 100%);
}

.question-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #fff5eb 0%, #ffe8d6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-item.active .question-icon {
    background: rgba(255, 255, 255, 0.3);
}

.question-icon i {
    font-size: 20px;
    color: #f4a261;
    transition: color 0.3s ease;
}

.faq-item.active .question-icon i {
    color: white;
}

.faq-question h4 {
    font-size: 17px;
    font-weight: 600;
    color: #2d3436;
    margin: 0;
    line-height: 1.4;
    flex: 1;
    transition: color 0.3s ease;
}

.faq-item.active .faq-question h4 {
    color: white;
}

.faq-toggle {
    width: 32px;
    height: 32px;
    background: rgba(244, 162, 97, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-item.active .faq-toggle {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(180deg);
}

.faq-toggle i {
    font-size: 16px;
    color: #f4a261;
    transition: color 0.3s ease;
}

.faq-item.active .faq-toggle i {
    color: white;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: white;
}

.faq-item.active .faq-answer {
    max-height: 800px;
}

.faq-answer p {
    padding: 0 25px 20px;
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: #666;
}

.faq-answer ul {
    padding: 0 25px 20px 45px;
    margin: 0;
}

.faq-answer ul li {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 8px;
}

.feature-grid,
.storage-tips {
    padding: 0 25px 20px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #666;
}

.feature i {
    color: #f4a261;
    font-size: 18px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.tip {
    display: flex;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.6;
}

.tip.do {
    background: #E8F5E9;
    color: #2E7D32;
}

.tip.dont {
    background: #FFEBEE;
    color: #C62828;
}

.tip.tip-note {
    background: #FFF3E0;
    color: #E65100;
}

.tip i {
    font-size: 18px;
    flex-shrink: 0;
}

.faq-footer {
    text-align: center;
    margin-top: 40px;
}

.faq-footer p {
    font-size: 16px;
    color: #666;
}

.faq-link {
    color: #f4a261;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.faq-link:hover {
    color: #e76f51;
    text-decoration: underline;
}

/* ==================== FOOTER ==================== */
.footer {
    background: linear-gradient(135deg, #3E2723 0%, #1B0B0A 100%);
    color: #ffffff;
    padding: 60px 60px 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(244, 162, 97, 0.5), transparent);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo .logo-icon {
    font-size: 36px;
}

.footer-logo h3 {
    font-size: 26px;
    background: linear-gradient(135deg, #f4a261 0%, #e76f51 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Playfair Display', serif;
}

.brand-tagline {
    font-size: 16px;
    font-weight: 600;
    color: #f4a261;
    margin-bottom: 12px;
}

.brand-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.link-group h5 {
    font-size: 17px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 18px;
}

.link-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.link-group ul li {
    margin-bottom: 10px;
}

.link-group ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.link-group ul li a i {
    font-size: 10px;
}

.link-group ul li a:hover {
    color: #f4a261;
    transform: translateX(5px);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.contact-item i {
    color: #f4a261;
    font-size: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
}

.copyright p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    text-align: center;
    margin: 0;
}

.copyright i.fa-heart {
    color: #f4a261;
}

.footer-extra {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.social-footer {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-icon:hover {
    background: linear-gradient(135deg, #f4a261 0%, #e76f51 100%);
    transform: translateY(-3px);
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f4a261 0%, #e76f51 100%);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(231, 111, 81, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    visibility: hidden;
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(231, 111, 81, 0.4);
}

/* ==================== RESPONSIVE STYLES ==================== */

@media (max-width: 992px) {
    .nav-container {
        padding: 15px 30px;
    }

    .hero-section {
        padding: 100px 40px 70px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-title {
        font-size: 44px;
    }

    .hero-image {
        order: -1;
    }

    .contact-section,
    .map-section,
    .faq-section {
        padding: 70px 40px;
    }

    .map-card {
        grid-template-columns: 1fr;
    }

    .faq-container {
        grid-template-columns: 1fr;
    }

    .footer {
        padding: 50px 40px 0;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 15px 20px;
    }

    .logo h1 {
        font-size: 22px;
    }

    .logo-icon {
        font-size: 28px;
    }

    .hamburger {
        display: flex;
    }

    .navbar nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: #ffffff;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
        z-index: 999;
    }

    .navbar nav.active {
        right: 0;
    }

    .nav-link::after {
        display: none;
    }

    .hero-section {
        padding: 90px 30px 60px;
        min-height: 400px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-stats {
        gap: 25px;
    }

    .stat-number {
        font-size: 28px;
    }

    .image-frame {
        width: 250px;
        height: 250px;
    }

    .contact-section,
    .map-section,
    .faq-section {
        padding: 60px 30px;
    }

    .section-title {
        font-size: 36px;
    }

    .info-card {
        padding: 30px;
    }

    .social-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .footer {
        padding: 40px 30px 0;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-extra {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 80px 20px 50px;
    }

    .hero-title {
        font-size: 30px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .stat-number {
        font-size: 24px;
    }

    .stat-label {
        font-size: 12px;
    }

    .image-frame {
        width: 200px;
        height: 200px;
    }

    .contact-section,
    .map-section,
    .faq-section {
        padding: 50px 20px;
    }

    .section-title {
        font-size: 30px;
    }

    .section-subtitle {
        font-size: 15px;
    }

    .info-card,
    .quick-contact {
        padding: 25px 20px;
    }

    .card-header h4 {
        font-size: 20px;
    }

    .social-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .faq-question {
        padding: 20px;
    }

    .question-icon {
        width: 40px;
        height: 40px;
    }

    .faq-question h4 {
        font-size: 15px;
    }

    .footer {
        padding: 35px 20px 0;
    }

    .footer-logo h3 {
        font-size: 22px;
    }

    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
}