/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden !important;
    width: 100%;
    position: relative;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden !important;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

h1, h2, h3, h4, h5, h6, .logo-text, .nav-menu, .cta-button {
    font-family: 'Montserrat', sans-serif;
}

/* Prevent horizontal scroll */
* {
    max-width: 100%;
}

img {
    max-width: 100%;
    height: auto;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    width: 100%;
    position: relative;
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInFromRight {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.animate-fadeInUp { animation: fadeInUp 0.8s ease-out; }
.animate-bounce { animation: bounce 2s infinite; }
.animate-pulse { animation: pulse 2s infinite; }

/* Header */
header {
    background: white;
    color: #0066cc;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    color: #0066cc;
    text-decoration: none;
    font-weight: bold;
}

.logo-image {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0066cc, #228b22);
    border-radius: 50%;
    margin-right: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    border: 3px solid #f0f0f0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.logo-text {
    font-size: 1.4rem;
    font-weight: bold;
    color: #0066cc;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: #0066cc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 700;
    padding: 0.5rem 0;
}

.nav-menu a:hover {
    color: #228b22;
}

/* Active menu state */
.nav-menu a.active {
    color: #228b22;
    border-bottom: 2px solid #228b22;
}

/* Contact Button in Navigation */
.contact-button {
    display: inline-block;
    background: #ff6b35;
    color: white;
    padding: 10px 18px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    margin-left: 1rem;
}

.contact-button:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #0066cc;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 2001;
}

/* Mobile Menu */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 350px;
    height: 100vh;
    background: white;
    z-index: 2000;
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: -5px 0 20px rgba(0,0,0,0.15);
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    padding: 1.5rem 1rem;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #0066cc;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-items {
    padding: 1rem 0;
}

.mobile-menu-items a {
    display: block;
    padding: 1rem 1.5rem;
    color: #0066cc;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mobile-menu-items a.active {
    color: #228b22;
    background-color: rgba(34, 139, 34, 0.1);
}

.mobile-menu-items a:hover {
    background: #f8f9fa;
    color: #228b22;
    padding-left: 2rem;
}

/* Mobile Contact Button */
.mobile-contact-button {
    display: block;
    background: #ff6b35;
    color: white;
    text-align: center;
    margin: 1rem 1.5rem;
    padding: 1rem;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-contact-button:hover {
    background: #e55a2b;
}

/* Page Title Section */
.page-title {
    background: linear-gradient(rgba(0, 102, 204, 0.9), rgba(34, 139, 34, 0.9)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><rect fill="%234a90e2" width="1200" height="400"/><path fill="%23228b22" d="M0,160L48,170.7C96,181,192,203,288,197.3C384,192,480,160,576,154.7C672,149,768,171,864,176C960,181,1056,171,1152,165.3L1200,160L1200,400L1152,400C1056,400,960,400,864,400C768,400,672,400,576,400C480,400,384,400,288,400C192,400,96,400,48,400L0,400Z"/></svg>') center/cover;
    padding: 150px 0 60px;
    text-align: center;
    color: white;
}

.page-title h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-title p {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 102, 204, 0.8), rgba(34, 139, 34, 0.8)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%234a90e2" width="1200" height="600"/><path fill="%23228b22" d="M0,320L48,336C96,352,192,384,288,377.3C384,371,480,325,576,288C672,251,768,213,864,208C960,203,1056,229,1152,240L1200,256L1200,600L1152,600C1056,600,960,600,864,600C768,600,672,600,576,600C480,600,384,600,288,600C192,600,96,600,48,600L0,600Z"/></svg>') center/cover;
    padding: 140px 0 80px;
    text-align: center;
    color: white;
    min-height: 70vh;
    display: flex;
    align-items: center;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: clamp(1.8rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
    font-size: clamp(0.9rem, 2.5vw, 1.3rem);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Buttons */
.cta-button {
    display: inline-block;
    background: #ff6b35;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin: 0.5rem;
}

.cta-button:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid white;
}

.cta-button.secondary:hover {
    background: white;
    color: #0066cc;
}

/* Floating CTA Button */
.floating-cta {
    position: fixed;
    bottom: 100px;
    right: 20px;
    background: #ff6b35;
    color: white;
    padding: 15px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 990;
    animation: pulse 2s infinite;
}

.floating-cta:hover {
    background: #e55a2b;
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: 2rem;
    color: #0066cc;
}

/* Content Sections */
.content-section {
    padding: 80px 0;
    background: white;
}

.content-section.alt {
    background: #f8f9fa;
}

/* Services Section */
.services {
    padding: 60px 0;
    background: #f8f9fa;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    width: 100%;
}

.service-card {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
    width: 100%;
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #0066cc;
}

.service-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* About Section */
.about {
    padding: 60px 0;
    background: white;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    width: 100%;
}

.about-text h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: 1.5rem;
    color: #0066cc;
}

.about-text p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.features-list {
    list-style: none;
    margin-top: 1.5rem;
}

.features-list li {
    padding: 0.5rem 0;
    color: #0066cc;
    font-weight: bold;
}

.features-list li:before {
    content: "✓ ";
    color: #228b22;
    font-weight: bold;
    margin-right: 0.5rem;
}

.about-image-content {
    background: linear-gradient(135deg, #0066cc, #228b22);
    height: 300px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    width: 100%;
}

/* Service Detail */
.service-detail {
    margin-top: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-detail h3 {
    color: #0066cc;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-detail-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    align-items: center;
}

.service-detail-image {
    background: linear-gradient(135deg, #0066cc, #228b22);
    height: 200px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
}

.service-detail-text {
    line-height: 1.8;
}

.service-detail-text p {
    margin-bottom: 1rem;
}

.service-price {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    font-weight: bold;
    color: #0066cc;
}

/* Instagram Section */
.instagram-section {
    padding: 60px 0;
    background: #f8f9fa;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
    width: 100%;
}

.instagram-post {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    width: 100%;
    cursor: pointer;
}

.instagram-post:hover {
    transform: scale(1.02);
}

.instagram-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.instagram-content {
    padding: 1rem;
}

.instagram-meta {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #666;
}

.instagram-date {
    margin-left: auto;
    font-size: 0.8rem;
}

.instagram-likes {
    font-size: 0.85rem;
    color: #333;
    margin-top: 0.5rem;
}

/* Blog Section */
.blog {
    padding: 60px 0;
    background: white;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    width: 100%;
}

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    width: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-image {
    height: 180px;
    background: linear-gradient(135deg, #0066cc, #228b22);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    color: #666;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.blog-card h3 {
    color: #0066cc;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.blog-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.read-more {
    color: #228b22;
    text-decoration: none;
    font-weight: bold;
}

.read-more:hover {
    text-decoration: underline;
}

/* Full Blog Article */
.blog-article {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.blog-article-header {
    margin-bottom: 2rem;
}

.blog-article-image {
    height: 300px;
    background: linear-gradient(135deg, #0066cc, #228b22);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.blog-article h2 {
    font-size: 1.8rem;
    color: #0066cc;
    margin-bottom: 1rem;
}

.blog-article-content {
    line-height: 1.8;
}

.blog-article-content p {
    margin-bottom: 1.5rem;
}

/* Contact Section */
.contact {
    padding: 60px 0;
    background: #0066cc;
    color: white;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    width: 100%;
}

.contact-info h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.contact-item span {
    margin-right: 1rem;
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.contact-form {
    background: rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-radius: 15px;
    width: 100%;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 8px;
    background: white;
    font-size: 0.9rem;
}

.form-group textarea {
    height: 100px;
    resize: vertical;
}

.submit-button {
    background: #ff6b35;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s ease;
    font-size: 1rem;
}

.submit-button:hover {
    background: #e55a2b;
}

/* Map */
.map-container {
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 2rem;
    background: #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: white;
    text-align: center;
    padding: 2rem 0;
    width: 100%;
}

footer a {
    color: white;
    margin: 0 0.5rem;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Sticky Bottom Bar - ONLY ON MOBILE */
.sticky-bottom {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #0066cc, #228b22);
    display: none; /* Hidden by default */
    justify-content: space-around;
    padding: 0.8rem 0.5rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 999;
    width: 100%;
}

.sticky-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.2);
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 20px;
    transition: all 0.3s ease;
    flex: 1;
    margin: 0 0.3rem;
    font-weight: bold;
    font-size: 0.9rem;
    max-width: 45%;
}

.sticky-button:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

.sticky-button span {
    margin-right: 0.3rem;
    font-size: 1rem;
}

/* Scroll Animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 768px) {
    body {
        padding-bottom: 80px;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
    }
    
    .contact-button {
        display: none; /* Hide the desktop contact button on mobile */
    }

    .mobile-menu {
        width: 90%;
        max-width: 320px;
    }

    .mobile-menu-items a {
        font-size: 0.95rem;
        padding: 0.8rem 1rem;
    }
    
    /* Show sticky bottom bar on mobile */
    .sticky-bottom {
        display: flex;
    }

    .floating-cta {
        display: none; /* Hide on mobile as we have the sticky bottom bar */
    }

    .hero {
        padding: 110px 0 50px;
        min-height: 60vh;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-image-content {
        height: 250px;
        font-size: 2.5rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .instagram-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .sticky-bottom {
        padding: 0.6rem 0.3rem;
    }

    .sticky-button {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
    
    .service-detail-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .mobile-menu {
        width: 95%;
        max-width: 300px;
    }

    .mobile-menu-items a {
        font-size: 0.9rem;
        padding: 0.8rem;
    }

    .hero h1 {
        font-size: 1.6rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .sticky-button {
        padding: 8px 10px;
        font-size: 0.75rem;
    }
    
    .page-title {
        padding: 130px 0 40px;
    }
}