/* Endless Summer Inspired Surf Lessons Website */

/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

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

/* Typography - Endless Summer Style */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #d35400;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #e67e22, #f39c12);
    margin: 1rem auto;
    border-radius: 2px;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px 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;
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.nav-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.nav-brand-link {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.nav-brand-link:hover {
    color: #e67e22;
}

.nav-logo h2 {
    color: #d35400;
    font-size: 1.5rem;
    margin: 0;
    transition: color 0.3s ease;
}

.nav-brand-link:hover h2 {
    color: #e67e22;
}

.nav-contact {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    margin-top: 0.2rem;
}

.nav-phone,
.nav-email,
.nav-address {
    color: #d35400;
    font-size: 0.7rem;
    margin: 0;
    font-weight: 400;
    line-height: 1.1;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #e67e22;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #e67e22;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}


/* About Section */
.about {
    padding: 80px 0;
    background: #fff;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.about-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}


/* Rates Section */
.rates {
    padding: 80px 0;
    background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url('images/4.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.rates-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

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

.rate-card {
    background: rgba(173, 216, 230, 0.7);
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    font-family: 'Quicksand', 'Open Sans', sans-serif;
}

.rate-card:hover {
    border-color: #e67e22;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}


.rate-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #d35400;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.rate-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #e67e22;
    margin-bottom: 1.5rem;
    font-family: 'Quicksand', sans-serif;
    letter-spacing: 1px;
}

.rate-price span {
    font-size: 1rem;
    color: #666;
    font-weight: 400;
}

.rate-features {
    list-style: none;
    margin-bottom: 2rem;
    font-family: 'Quicksand', sans-serif;
    font-weight: 400;
}

.rate-features li {
    padding: 0.5rem 0;
    color: #666;
    border-bottom: 1px solid #f0f0f0;
}

.rate-features li:last-child {
    border-bottom: none;
}

.rate-button {
    display: inline-block;
    background: linear-gradient(45deg, #e67e22, #f39c12);
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.rate-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230, 126, 34, 0.4);
}

.rates-note {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #e67e22;
}

.rates-note p {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
}

.photographer-note {
    background: rgba(230, 126, 34, 0.1);
    color: #d35400;
    padding: 0.8rem;
    border-radius: 8px;
    margin-top: 1rem;
    text-align: center;
    border: 1px solid rgba(230, 126, 34, 0.2);
}

.photographer-note p {
    margin: 0;
    font-size: 0.85rem;
    font-weight: 400;
}

/* Reviews Section */
.reviews {
    padding: 40px 0;
    background: #fff;
}

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

.review-card {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    border-color: #e67e22;
}

.review-logo {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
}

.review-logo-img {
    max-height: 40px;
    max-width: 150px;
    object-fit: contain;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.review-card:hover .review-logo-img {
    transform: scale(1.05);
    opacity: 0.9;
}

.review-card h3 {
    color: #d35400;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.review-card p {
    color: #666;
    line-height: 1.5;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    flex-grow: 1;
}

.review-button {
    display: inline-block;
    background: linear-gradient(45deg, #e67e22, #f39c12);
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(230, 126, 34, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.review-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230, 126, 34, 0.4);
    background: linear-gradient(45deg, #f39c12, #e67e22);
}

/* Gallery Section */
.gallery {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.gallery-intro {
    text-align: center;
    color: #f8f9fa;
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

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

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

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

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

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

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #fff;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #d35400;
}

.contact-info p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #e67e22;
}

.contact-form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: 'Open Sans', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e67e22;
}

.submit-button {
    width: 100%;
    background: linear-gradient(45deg, #e67e22, #f39c12);
    color: white;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230, 126, 34, 0.4);
}

/* Footer */
.footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    margin-bottom: 0.5rem;
}

.footer-logo h3 {
    color: #e67e22;
    margin-bottom: 0.5rem;
}

.footer-logo p {
    color: #bdc3c7;
    font-style: italic;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #e67e22;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

/* Bottom Navigation */
.bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    padding: 0.5rem 0;
}

.bottom-nav-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 100%;
    margin: 0 auto;
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #fff;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    min-width: 50px;
}

.bottom-nav-item:hover {
    background: rgba(230, 126, 34, 0.2);
    color: #e67e22;
}

.bottom-nav-icon {
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
}

.bottom-nav-text {
    font-size: 0.7rem;
    font-weight: 500;
    text-align: center;
}


/* Responsive Design */
@media (max-width: 768px) {
    .bottom-nav {
        display: block;
    }
    
    body {
        padding-bottom: 80px;
    }
    
    /* Hide About button on mobile only */
    .bottom-nav-item:first-child {
        display: none;
    }
    
    /* Distribute navigation buttons evenly on mobile */
    .bottom-nav-container {
        padding-left: 80px;
        padding-right: 20px;
        justify-content: space-between;
        gap: 5px;
    }
    
    /* Make navigation items smaller on mobile to fit 5 buttons */
    .bottom-nav-item {
        flex: 1;
        min-width: 35px;
        padding: 0.4rem 0.2rem;
        text-align: center;
    }
    
    .bottom-nav-icon {
        font-size: 1.1rem;
        margin-bottom: 0.1rem;
    }
    
    .bottom-nav-text {
        font-size: 0.65rem;
        line-height: 1;
    }
    
    /* Tawk.to widget positioning for mobile */
    #tawk-widget,
    .tawk-widget,
    [data-tawk-widget],
    iframe[src*="tawk.to"],
    div[id*="tawk"],
    div[class*="tawk"] {
        position: fixed !important;
        z-index: 9999 !important;
        bottom: 20px !important;
        right: 20px !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: auto !important;
        height: auto !important;
        max-width: none !important;
        max-height: none !important;
        transform: none !important;
        transition: none !important;
        animation: none !important;
    }
    .nav-menu {
        display: none;
    }
    
    /* Compact navigation contact on mobile */
    .nav-contact {
        gap: 0.05rem;
        margin-top: 0.1rem;
    }

    .nav-phone,
    .nav-email,
    .nav-address {
        font-size: 0.65rem;
        line-height: 1.0;
    }
    
    /* Mobile: Smaller overall layout */
    .container {
        padding: 0 1rem;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    
    .about {
        padding: 2rem 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-text h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .about-text p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }
    
    
    .rates {
        padding: 5rem 0 1.5rem 0;
    }
    
    .reviews {
        padding: 1.5rem 0;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .review-card {
        padding: 1rem;
    }
    
    .review-card h3 {
        font-size: 1.1rem;
    }
    
    .review-card p {
        font-size: 0.8rem;
    }
    
    .review-logo {
        height: 40px;
        margin-bottom: 0.8rem;
    }
    
    .review-logo-img {
        max-height: 30px;
        max-width: 120px;
    }
    
    .rates-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .rate-card {
        padding: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .rate-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .rate-price {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .rate-features {
        margin-bottom: 1rem;
    }
    
    .rate-features li {
        font-size: 0.85rem;
        margin-bottom: 0.3rem;
    }
    
    .rate-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
    
    .rate-card h3 {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }
    
    .rate-price {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .rate-features {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .rate-button {
        padding: 0.7rem 1.2rem;
        font-size: 0.8rem;
    }
    
    .rates-note,
    .photographer-note {
        padding: 1rem;
        font-size: 0.85rem;
    }
    
    .gallery {
        padding: 2rem 0;
    }
    
    .gallery-intro {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .gallery-img {
        height: 200px;
        object-fit: contain;
        background: #f8f9fa;
    }
    
    .contact {
        padding: 2rem 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-info h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .contact-info p {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.7rem;
        font-size: 0.9rem;
    }
    
    .submit-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .footer {
        padding: 1.5rem 0;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-logo h2 {
        font-size: 1.3rem;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .footer-links a {
        font-size: 0.9rem;
    }
    
    .footer-bottom {
        font-size: 0.8rem;
        margin-top: 1rem;
    }
}

/* iPad Responsive */
@media (max-width: 1024px) and (min-width: 769px) {
    .bottom-nav {
        display: block;
    }
    
    body {
        padding-bottom: 80px;
    }
    
    /* Move About button slightly to the right on iPad */
    .bottom-nav-item:first-child {
        margin-left: 15px;
    }
    
    /* Tawk.to widget positioning for iPad */
    #tawk-widget,
    .tawk-widget,
    [data-tawk-widget],
    iframe[src*="tawk.to"],
    div[id*="tawk"],
    div[class*="tawk"] {
        position: fixed !important;
        z-index: 9999 !important;
        bottom: 20px !important;
        right: 20px !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: auto !important;
        height: auto !important;
        max-width: none !important;
        max-height: none !important;
        transform: none !important;
        transition: none !important;
        animation: none !important;
    }
    /* iPad navigation header - mobile style */
    .navbar {
        height: 60px;
        padding: 0 1rem;
    }
    
    .nav-container {
        height: 60px;
    }
    
    .nav-logo {
        gap: 0.5rem;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .logo-img {
        height: 50px;
    }
    
    .nav-logo h2 {
        font-size: 1.3rem;
        text-align: center;
    }
    
    .nav-brand {
        align-items: center;
        text-align: center;
    }
    
    .nav-contact {
        gap: 0.05rem;
        margin-top: 0.1rem;
        text-align: center;
    }
    
    .nav-address {
        font-size: 0.6rem;
        line-height: 1.2;
        word-wrap: break-word;
        max-width: 200px;
    }

    .nav-phone,
    .nav-email,
    .nav-address {
        font-size: 0.65rem;
        line-height: 1.0;
    }
    
    /* Hide navigation menu on iPad - mobile style */
    .nav-menu {
        display: none;
    }
    
    /* Show hamburger menu on iPad */
    .hamburger {
        display: block;
    }
    
    /* Mobile-style navigation menu for iPad */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        z-index: 1000;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }
    
    .nav-menu a {
        color: #fff;
        font-size: 1.1rem;
        padding: 0.8rem 1.5rem;
        display: block;
        transition: color 0.3s ease;
    }
    
    .nav-menu a:hover {
        color: #e67e22;
    }
    
    /* iPad: Smaller overall layout */
    .container {
        padding: 0 1.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
        margin-bottom: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }
    
    
    .about {
        padding: 3rem 0;
    }
    
    .about-content {
        gap: 2.5rem;
    }
    
    .about-text h3 {
        font-size: 1.7rem;
        margin-bottom: 1.2rem;
    }
    
    .about-text p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.2rem;
    }
    
    
    .rates {
        padding: 3rem 0;
    }
    
    .reviews {
        padding: 2rem 0;
    }
    
    .reviews-grid {
        gap: 1.5rem;
    }
    
    .review-card h3 {
        font-size: 1.3rem;
    }
    
    .review-card p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .review-logo {
        height: 45px;
        margin-bottom: 0.9rem;
    }
    
    .review-logo-img {
        max-height: 35px;
        max-width: 140px;
    }
    
    .rates-grid {
        gap: 1.8rem;
    }
    
    .rate-card {
        padding: 1.8rem;
    }
    
    .rate-card h3 {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
    }
    
    .rate-price {
        font-size: 2rem;
        margin-bottom: 1.2rem;
    }
    
    .rate-features {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .rate-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.85rem;
    }
    
    .rates-note,
    .photographer-note {
        padding: 1.2rem;
        font-size: 0.9rem;
    }
    
    .gallery {
        padding: 3rem 0;
    }
    
    .gallery-intro {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 1.2rem;
    }
    
    .gallery-img {
        height: 200px;
    }
    
    .contact {
        padding: 3rem 0;
    }
    
    .contact-content {
        gap: 3rem;
    }
    
    .contact-info h3 {
        font-size: 1.7rem;
        margin-bottom: 1.2rem;
    }
    
    .contact-info p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .contact-form {
        padding: 1.8rem;
    }
    
    .form-group label {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.8rem;
        font-size: 0.95rem;
    }
    
    .submit-button {
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
    }
    
    .footer {
        padding: 2rem 0;
    }
    
    .footer-content {
        gap: 2rem;
    }
    
    .footer-logo h2 {
        font-size: 1.4rem;
    }
    
    .footer-links {
        gap: 1.5rem;
    }
    
    .footer-links a {
        font-size: 0.95rem;
    }
    
    .footer-bottom {
        font-size: 0.85rem;
        margin-top: 1.2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .nav-logo h2 {
        font-size: 1.1rem;
    }
    
    .nav-address {
        font-size: 0.55rem;
        max-width: 180px;
        line-height: 1.1;
    }
    
    .rate-price {
        font-size: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #e67e22, #f39c12);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #d35400, #e67e22);
}

/* Tawk.to Chat Widget Styling - Force Visibility */
#tawk-widget,
.tawk-widget,
[data-tawk-widget],
iframe[src*="tawk.to"],
div[id*="tawk"],
div[class*="tawk"] {
    position: fixed !important;
    z-index: 9999 !important;
    bottom: 20px !important;
    right: 20px !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: auto !important;
    height: auto !important;
    max-width: none !important;
    max-height: none !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
}

/* Override any hiding animations or transitions */
#tawk-widget *,
.tawk-widget *,
[data-tawk-widget] * {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}
