/* ===== CSS VARIABLES ===== */
:root {
    --primary: #d4a574;
    --secondary: #f4e6d7;
    --accent: #c9a96e;
    --dark: #2c2c2c;
    --light: #ffffff;
    --light-bg: rgba(255, 255, 255, 0.95);
    --text-dark: #333333;
    --text-light: #666666;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-strong: rgba(0, 0, 0, 0.2);
}

/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 76px;
    overflow-x: hidden;
}

body {
    font-family: 'TT Norms', 'Inter', sans-serif !important;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container,
.container-fluid {
    max-width: 100%;
    overflow-x: hidden;
}

main,
.hero-services-wrapper,
.services-section,
.gallery-section,
.reviews-section,
.contact-section,
footer {
    overflow-x: hidden;
}

section[id] {
    scroll-margin-top: 76px;
}

/* ===== TYPOGRAPHY ===== */
/* All headings use Amsterdam One */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Amsterdam One', cursive !important;
    font-weight: normal;
    line-height: 1.2;
}

/* All other text uses TT Norms */
p, span, a, li, label, input, textarea, select, button, .btn, .section-text, .review-text, .review-author, .footer-brand-tagline, .footer-nav-links a, .footer-email, .footer-copyright, .form-label, .form-control, .form-select, .hero-subtitle, .definition-text {
    font-family: 'TT Norms', 'Inter', sans-serif !important;
}

.section-title {
    font-family: 'Amsterdam One', cursive !important;
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.section-text {
    font-family: 'TT Norms', 'Inter', sans-serif !important;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.7;
}

/* ===== SKIP LINK ===== */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary);
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 1000;
    border-radius: 4px;
}

.skip-link:focus {
    top: 6px;
}


/* ===== NAVIGATION ===== */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 165, 116, 0.2);
    transition: all 0.3s ease;
    z-index: 1000;
}

.navbar-brand {
    font-family: 'Amsterdam One', cursive !important;
    font-size: 1.3rem;
    color: var(--primary) !important;
    font-weight: bold;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.navbar-brand-text {
    font-family: 'Amsterdam One', cursive !important;
    font-size: 1.3rem;
    color: var(--primary) !important;
    font-weight: bold;
    white-space: nowrap;
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease;
}

.navbar-logo-small {
    width: 80px !important;
    height: auto !important;
    max-width: 80px !important;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
}

/* Override any general img styles for navbar logos */
.navbar-brand img {
    width: 80px !important;
    height: auto !important;
    max-width: 80px !important;
}

.navbar.scrolled .navbar-logo-small {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

/* Mobile responsive adjustments */
@media (max-width: 991.98px) {
    .navbar-center-logo {
        display: none;
    }
    
    .navbar-logo-small {
        opacity: 1;
        visibility: visible;
    }
}

.navbar-nav .nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary) !important;
}

.navbar-toggler {
    border: none;
    color: var(--primary);
}

/* ===== HERO SECTION ===== */
.hero-services-wrapper {
    position: relative;
    overflow: hidden;
}

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: transparent !important;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}


.hero-definition-box {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 40px var(--shadow-strong);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.definition-image {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

.definition-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow);
}

.definition-label {
    font-family: 'Amsterdam One', cursive !important;
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.definition-pronunciation {
    font-family: 'Amsterdam One', cursive !important;
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.definition-text {
    font-family: 'TT Norms', 'Inter', sans-serif !important;
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== SECTION STYLES ===== */
.welcome-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.services-section {
    background: transparent;
    padding: 80px 0;
}

.reviews-section {
    background: linear-gradient(135deg, #f5f0f8, #f8f0f5);
    padding: 80px 0;
}

.contact-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.welcome-section::before,
.reviews-section::before,
.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(135deg, rgba(255, 192, 203, 0.4), rgba(255, 228, 225, 0.1)); */
    z-index: 1;
    pointer-events: none;
}

.section-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.section-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(135deg, rgba(255, 192, 203, 0.4), rgba(255, 228, 225, 0.5)); */
    z-index: -1;
}

.text-box {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 40px var(--shadow-strong);
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
    z-index: 2;
}

/* ===== CIRCLE IMAGE WRAPPER ===== */
.circle-image-wrapper {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    aspect-ratio: 1;
    border-radius: 20%;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    opacity: 1 !important;
    transform: none !important;
    position: relative;
    z-index: 2;
}

.circle-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.circle-image-wrapper:hover img {
    transform: scale(1.05);
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
    background: var(--light-bg);
    padding: 80px 0;
}

.gallery-section .container-fluid,
.gallery-section .row {
    margin-left: 0;
    margin-right: 0;
    overflow-x: hidden;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px var(--shadow-strong);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item {
    cursor: pointer;
}

/* ===== GALLERY LIGHTBOX ===== */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
}

.lightbox-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    margin: auto;
    display: block;
    width: auto;
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 45px;
    color: #f1f1f1;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10000;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    backdrop-filter: blur(10px);
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: var(--primary);
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .lightbox-close {
        top: 20px;
        right: 20px;
        font-size: 40px;
        width: 40px;
        height: 40px;
    }
    
    .lightbox-content {
        max-width: 95%;
        max-height: 85vh;
    }
}

/* ===== HERO CONTENT SECTION ===== */
.hero-content-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.hero-content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(135deg, rgba(255, 192, 203, 0.4), rgba(255, 228, 225, 0.1)); */
    z-index: 1;
    pointer-events: none;
}

.hero-content-section .section-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-content-section .section-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-content-section .section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(135deg, rgba(255, 192, 203, 0.4), rgba(255, 228, 225, 0.5)); */
    z-index: -1;
}

.hero-content-box {
    text-align: center;
    padding: 3rem;
    background: var(--light);
    border-radius: 20px;
    box-shadow: 0 20px 40px var(--shadow-strong);
}

.hero-title {
    font-family: 'Amsterdam One', cursive !important;
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-family: 'TT Norms', 'Inter', sans-serif !important;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

/* ===== REVIEWS SECTION ===== */
.reviews-title {
    font-family: 'Amsterdam One', cursive !important;
    font-size: 2.2rem;
    color: var(--primary);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 10;
}

.review-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.5);
    height: 100%;
    opacity: 1 !important;
    transform: none !important;
    position: relative;
    z-index: 2;
}

.review-text-wrapper {
    margin-bottom: 1rem;
}

.review-text {
    font-family: 'TT Norms', 'Inter', sans-serif !important;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.read-more-btn {
    background: transparent;
    border: none;
    color: var(--primary);
    font-family: 'TT Norms', 'Inter', sans-serif !important;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.read-more-btn:hover {
    color: var(--accent);
}

.review-author {
    font-family: 'TT Norms', 'Inter', sans-serif !important;
    font-weight: 600;
    color: var(--primary);
    text-align: center;
    margin-bottom: 0;
    margin-top: 1rem;
}

.review-rating {
    color: #FFD700;
    font-size: 1.2rem;
    text-align: center;
}

.review-rating i {
    margin: 0 2px;
}

.review-source {
    font-family: 'TT Norms', 'Inter', sans-serif !important;
    color: var(--text-light);
    text-align: center;
    margin-top: 0.5rem;
}

.review-source i {
    color: #1877F2;
    margin-right: 5px;
}

/* ===== SOCIAL MEDIA SECTION ===== */
.socials-section {
    background: var(--light-bg);
    padding: 80px 0;
}

.social-icons-large {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-icon-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: var(--primary);
    color: var(--light);
    border-radius: 50%;
    font-size: 2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px var(--shadow);
}

.social-icon-large:hover {
    background: var(--accent);
    color: var(--light);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px var(--shadow-strong);
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.form-label {
    font-family: 'TT Norms', 'Inter', sans-serif !important;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-control,
.form-select {
    font-family: 'TT Norms', 'Inter', sans-serif !important;
    border: 2px solid rgba(212, 165, 116, 0.3);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(212, 165, 116, 0.25);
    outline: none;
}

/* ===== BUTTONS ===== */
.btn {
    font-family: 'TT Norms', 'Inter', sans-serif !important;
    padding: 0.8rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary);
    color: var(--light);
    border: 2px solid var(--primary);
}

.btn-primary:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--shadow-strong);
}

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

.btn-secondary:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--shadow-strong);
}

/* ===== FOOTER ===== */
.footer-section {
    background: var(--light-bg);
    color: var(--text-dark);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(212, 165, 116, 0.2);
}

.footer-brand {
    margin-bottom: 1.5rem;
}

.footer-brand-title {
    font-family: 'Amsterdam One', cursive !important;
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.footer-brand-tagline {
    font-family: 'TT Norms', 'Inter', sans-serif !important;
    font-size: 1rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 0;
}

.footer-section-title {
    font-family: 'Amsterdam One', cursive !important;
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-weight: normal;
}

.footer-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav-links li {
    margin-bottom: 0.8rem;
}

.footer-nav-links a {
    font-family: 'TT Norms', 'Inter', sans-serif !important;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-nav-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
    padding-left: 5px;
}

.footer-contact-info {
    margin-bottom: 1.5rem;
}

.footer-email {
    font-family: 'TT Norms', 'Inter', sans-serif !important;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    background: rgba(212, 165, 116, 0.1);
    border: 1px solid rgba(212, 165, 116, 0.2);
}

.footer-email:hover {
    color: var(--primary);
    background: rgba(212, 165, 116, 0.2);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.footer-email i {
    color: var(--primary);
    font-size: 1.2rem;
}

.footer-social-icons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(212, 165, 116, 0.1);
    color: var(--primary);
    border-radius: 50%;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 165, 116, 0.2);
}

.footer-social-icon:hover {
    background: var(--primary);
    color: var(--light);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px var(--shadow);
}

.footer-divider-line {
    border-color: rgba(212, 165, 116, 0.2);
    margin: 2rem 0 1rem;
}

.footer-copyright {
    font-family: 'TT Norms', 'Inter', sans-serif !important;
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

@media (max-width: 768px) {
    .footer-section {
        padding: 40px 0 20px;
    }
    
    .footer-brand-title {
        font-size: 1.5rem;
    }
    
    .footer-section-title {
        font-size: 1.1rem;
    }
    
    .footer-email {
        font-size: 0.9rem;
    }
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

.whatsapp-btn:hover {
    background: #128C7E;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet and below (max-width: 991.98px) */
@media (max-width: 991.98px) {
    .navbar-brand-text {
        font-size: 1.1rem;
    }
    
    .services-section {
        padding: 60px 0;
    }
    
    .circle-image-wrapper {
        max-width: 350px;
        margin-bottom: 2rem;
    }
    
    .text-box {
        padding: 2.5rem;
    }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
    html {
        scroll-padding-top: 76px;
    }
    
    section[id] {
        scroll-margin-top: 76px;
    }
    
    .navbar {
        padding: 0.5rem 0;
    }
    
    .navbar-brand-text {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .reviews-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .section-text {
        font-size: 1rem;
    }
    
    /* Hero Section */
    .hero-section {
        min-height: 80vh;
        padding: 100px 0 60px;
    }
    
    .hero-content-box {
        padding: 2rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .text-box {
        padding: 2rem;
    }
    
    .hero-definition-box {
        padding: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        padding: 0.75rem 1.5rem;
    }
    
    /* Services Section */
    .services-section {
        padding: 40px 0;
    }
    
    .services-section .row {
        margin-bottom: 2rem;
    }
    
    .services-section .row:last-child {
        margin-bottom: 0;
    }
    
    /* Create unified card-like appearance on mobile */
    .services-section .row {
        background: transparent;
        border-radius: 20px;
        overflow: hidden;
        position: relative;
    }
    
    .services-section .row > [class*="col-"] {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .services-section .circle-image-wrapper {
        max-width: 280px;
        margin-bottom: 0;
        margin-top: 0;
        z-index: 3;
        position: relative;
        transform: translateY(-15px);
    }
    
    .services-section .text-box {
        margin-top: -20px;
        padding-top: 2.25rem;
        position: relative;
        z-index: 2;
        border-radius: 20px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }
    
    /* Ensure proper stacking order */
    .services-section .col-lg-5 {
        margin-bottom: 0 !important;
        padding-bottom: 10px;
    }
    
    .services-section .col-lg-7 {
        margin-top: 0;
        padding-top: 0;
    }
    
    /* Gallery Section */
    .gallery-section {
        padding: 60px 0;
    }
    
    .gallery-item {
        margin-bottom: 1rem;
    }
    
    .gallery-col {
        padding: 0.5rem;
    }
    
    #loadMoreBtn {
        width: 100%;
        max-width: 250px;
    }
    
    /* Reviews Section */
    .reviews-section {
        padding: 60px 0;
    }
    
    .review-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .review-rating {
        font-size: 1rem;
    }
    
    .review-text {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    /* Social Media Section */
    .socials-section {
        padding: 60px 0;
    }
    
    .social-icons-large {
        gap: 1rem;
    }
    
    .social-icon-large {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    /* Contact Section */
    .contact-section {
        padding: 60px 0;
    }
    
    /* Footer */
    .footer-section {
        text-align: center;
    }
    
    .footer-brand {
        text-align: center;
    }
    
    .footer-nav-links {
        text-align: center;
    }
    
    .footer-section-title {
        text-align: center;
    }
    
    .footer-contact-info {
        text-align: center;
    }
    
    .footer-email {
        display: flex;
        justify-content: center;
        font-size: 0.9rem;
        padding: 0.6rem 0.8rem;
    }
    
    .footer-social-icons {
        justify-content: center;
    }
    
    /* Container adjustments */
    .container-fluid {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    /* WhatsApp Button */
    .whatsapp-btn {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    /* Hero Content Section */
    .hero-content-section {
        padding: 60px 0;
    }
}

/* Small Mobile (max-width: 576px) */
@media (max-width: 576px) {
    .navbar-brand-text {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.6rem;
        margin-bottom: 0.75rem;
    }
    
    .reviews-title {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
    
    .section-text {
        font-size: 0.95rem;
    }
    
    /* Hero Section */
    .hero-section {
        min-height: 70vh;
        padding: 80px 0 40px;
    }
    
    .hero-title {
        font-size: 1.6rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .definition-pronunciation {
        font-size: 1.5rem;
    }
    
    .text-box {
        padding: 1.5rem;
    }
    
    .hero-definition-box {
        padding: 1rem;
    }
    
    .hero-content-box {
        padding: 1.5rem;
    }
    
    /* Services Section - Enhanced mobile connection */
    .services-section {
        padding: 30px 0;
    }
    
    .services-section .row {
        margin-bottom: 1.5rem;
    }
    
    .services-section .row:last-child {
        margin-bottom: 0;
    }
    
    .services-section .circle-image-wrapper {
        max-width: 220px;
        margin-bottom: 0;
        margin-top: 0;
        transform: translateY(-12px);
    }
    
    .services-section .text-box {
        margin-top: -18px;
        padding-top: 2rem;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        padding-bottom: 1.5rem;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    }
    
    .services-section .section-title {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    .services-section .section-text {
        font-size: 0.95rem;
        margin-bottom: 0;
    }
    
    /* Gallery Section */
    .gallery-section {
        padding: 50px 0;
    }
    
    .gallery-col {
        padding: 0.25rem;
    }
    
    #loadMoreBtn {
        width: 100%;
        max-width: 200px;
        padding: 0.65rem 1.25rem;
    }
    
    /* Reviews on mobile - stack vertically */
    .review-card {
        margin-bottom: 1.5rem;
    }
    
    /* Reviews Section */
    .reviews-section {
        padding: 50px 0;
    }
    
    .review-card {
        padding: 1.25rem;
    }
    
    .review-text {
        font-size: 0.9rem;
    }
    
    .review-rating {
        font-size: 0.9rem;
    }
    
    /* Social Media Section */
    .socials-section {
        padding: 50px 0;
    }
    
    .social-icon-large {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    /* Contact Section */
    .contact-section {
        padding: 50px 0;
    }
    
    .form-control,
    .form-select {
        padding: 0.65rem 0.85rem;
        font-size: 0.95rem;
    }
    
    /* Footer */
    .footer-section {
        padding: 40px 0 20px;
    }
    
    .footer-brand-title {
        font-size: 1.5rem;
    }
    
    .footer-brand-tagline {
        font-size: 0.9rem;
    }
    
    .footer-section-title {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .footer-nav-links a {
        font-size: 0.9rem;
    }
    
    .footer-email {
        font-size: 0.85rem;
        padding: 0.5rem 0.75rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        width: 100%;
        max-width: 100%;
    }
    
    /* Navigation adjustments */
    .navbar-nav {
        text-align: center;
    }
    
    .nav-link {
        padding: 0.75rem 1rem !important;
    }
    
    .footer-social-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .footer-copyright {
        font-size: 0.85rem;
    }
    
    /* WhatsApp Button */
    .whatsapp-btn {
        bottom: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    /* Hero Content Section */
    .hero-content-section {
        padding: 50px 0;
    }
}

/* Extra Small Mobile (max-width: 400px) */
@media (max-width: 400px) {
    .navbar-brand-text {
        font-size: 0.85rem;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .reviews-title {
        font-size: 1.4rem;
    }
    
    .hero-title {
        font-size: 1.4rem;
    }
    
    .text-box {
        padding: 1.25rem;
    }
    
    /* Services Section - Extra small mobile */
    .services-section {
        padding: 25px 0;
    }
    
    .services-section .circle-image-wrapper {
        max-width: 180px;
        margin-top: 0;
        transform: translateY(-10px);
    }
    
    .services-section .text-box {
        margin-top: -15px;
        padding-top: 1.75rem;
        padding-left: 1.25rem;
        padding-right: 1.25rem;
        padding-bottom: 1.25rem;
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.06);
    }
    
    .services-section .section-title {
        font-size: 1.3rem;
    }
    
    .review-card {
        padding: 1rem;
    }
    
    .review-text {
        font-size: 0.85rem;
    }
    
    .footer-email {
        font-size: 0.8rem;
    }
    
    .gallery-col {
        padding: 0.15rem;
    }
    
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* ===== UTILITY CLASSES ===== */
.text-center {
    text-align: center;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.py-5 {
    padding: 3rem 0;
}

/* ===== SCROLL ANIMATIONS ===== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}