/* ==========================================
   Global Styles
   ========================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #e6c200;
    --secondary-color: #541e50;
    --text-color: #333333;
    --light-bg: #f9f7f4;
    --white: #ffffff;
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

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

/* ==========================================
   Header & Navigation
   ========================================== */

.header {
    background-color: var(--secondary-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo-img {
    height: 65px;
    width: auto;
    display: block;
    transition: var(--transition);
    padding: 4px;
}

.logo-img:hover {
    transform: scale(1.05);
}

.logo {
    display: flex;
    align-items: center;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    opacity: 0.9;
}

.nav a:hover {
    color: var(--primary-color);
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

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

.phone-link {
    background-color: var(--primary-color);
    color: var(--secondary-color) !important;
    padding: 10px 24px;
    border-radius: 25px;
    text-decoration: none;
    transition: var(--transition);
    font-weight: 700;
}

.phone-link:hover {
    background-color: #d4ae00;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 194, 0, 0.3);
}

/* ==========================================
   Hero Section
   ========================================== */

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #6e2a69 100%);
    min-height: 500px;
}

.hero-content {
    flex: 1;
    max-width: 500px;
    color: var(--white);
}

.hero-content h2 {
    font-size: 48px;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 16px 36px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 16px;
}

.cta-button:hover {
    background-color: #d4ae00;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(230, 194, 0, 0.3);
}

.hero-image {
    flex: 1;
    text-align: center;
    padding-left: 40px;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: var(--secondary-color);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
}

.image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Large bee logo for hero section */
.image-placeholder::after {
    content: '';
    position: absolute;
    width: 280px;
    height: 280px;
    background: url("Logo.png") center/contain no-repeat;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
}

/* ==========================================
   About Section
   ========================================== */

.about {
    background-color: var(--light-bg);
    padding: 80px 20px;
}

.about h2 {
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 40px;
    text-align: center;
}

.about-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 40px;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.feature .icon {
    font-size: 48px;
    display: block;
    margin-bottom: 15px;
}

.feature h3 {
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-size: 20px;
}

.feature p {
    color: #666;
    font-size: 14px;
}

/* ==========================================
   Reviews Section
   ========================================== */

.reviews {
    padding: 80px 20px;
    background-color: var(--white);
}

.reviews h2 {
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 50px;
    text-align: center;
}

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

.review-card {
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
}

.review-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.review-card .stars {
    color: #ffc107;
    font-size: 18px;
    margin-bottom: 15px;
    display: block;
}

.review-card p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    font-style: italic;
    color: #555;
}

.reviewer {
    font-weight: 600;
    color: var(--secondary-color);
    font-style: normal !important;
    font-size: 14px !important;
}

/* ==========================================
   Contact Section
   ========================================== */

.contact {
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
    padding: 80px 20px;
}

.contact h2 {
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 15px;
    text-align: center;
}

.contact-intro {
    text-align: center;
    color: #666;
    margin-bottom: 50px;
    font-size: 16px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info h3 {
    color: var(--secondary-color);
    margin-bottom: 25px;
    font-size: 20px;
}

.contact-info p {
    margin-bottom: 25px;
    line-height: 1.8;
}

.contact-info strong {
    color: var(--secondary-color);
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.contact-info a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Contact Form */

.contact-form {
    display: flex;
    flex-direction: column;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.form-group label {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 14px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(230, 194, 0, 0.1);
}

.submit-button {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 14px 32px;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 10px;
}

.submit-button:hover {
    background-color: #d4ae00;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(230, 194, 0, 0.3);
}

/* ==========================================
   Footer
   ========================================== */

.footer {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 40px 20px;
    text-align: center;
}

.footer p {
    margin: 10px 0;
    font-size: 14px;
}

.footer-note {
    font-size: 12px;
    opacity: 0.8;
}

/* ==========================================
   Responsive Design
   ========================================== */

@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
        gap: 20px;
    }

    .nav ul {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        gap: 0;
    }

    .nav li {
        padding: 10px 0;
        border-bottom: 1px solid #eee;
    }

    .hero {
        flex-direction: column;
        padding: 40px 20px;
        min-height: auto;
    }

    .hero-content h2 {
        font-size: 32px;
    }

    .hero-image {
        padding-left: 0;
        padding-top: 40px;
    }

    .image-placeholder {
        height: 300px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about h2,
    .reviews h2,
    .contact h2 {
        font-size: 28px;
    }

    .reviews-grid,
    .features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 18px;
    }

    .nav ul {
        display: none;
    }

    .header-contact {
        width: 100%;
    }

    .phone-link {
        display: block;
        text-align: center;
        width: 100%;
    }

    .hero-content h2 {
        font-size: 24px;
    }

    .hero-content p {
        font-size: 16px;
    }
}
