/* Global Styles */
:root {
    --primary-color: #FFA000; /* Amber/honey color */
    --secondary-color: #FFD54F; /* Light amber */
    --accent-color: #FFECB3; /* Very light amber */
    --text-color: #4E342E; /* Dark brown */
    --light-text: #fff;
    --dark-bg: #4E342E; /* Dark brown */
    --light-bg: #FFF8E1; /* Very light honey */
    --border-color: #FFB300; /* Darker amber */
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --gradient-primary: linear-gradient(135deg, #FFA000, #FFD54F);
    --gradient-secondary: linear-gradient(135deg, #FFB300, #FFECB3);
    --gradient-dark: linear-gradient(135deg, #4E342E, #6D4C41);
}

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

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

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

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    position: relative;
}

/* Hexagon Button Styles */
.hexagon-btn {
    clip-path: polygon(10% 0%, 90% 0%, 100% 50%, 90% 100%, 10% 100%, 0% 50%);
    padding: 15px 35px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hexagon-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    z-index: -1;
    transform: translateX(-100%);
    transition: all 0.3s ease;
}

.hexagon-btn:hover::before {
    transform: translateX(0);
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--light-text);
    box-shadow: 0 4px 15px rgba(255, 160, 0, 0.4);
}

.btn-primary:hover {
    background: var(--gradient-dark);
    color: var(--light-text);
    box-shadow: 0 6px 20px rgba(78, 52, 46, 0.5);
    transform: translateY(-3px);
}

.btn-secondary {
    background: var(--gradient-secondary);
    color: var(--text-color);
    box-shadow: 0 4px 15px rgba(255, 179, 0, 0.3);
}

.btn-secondary:hover {
    background: var(--gradient-primary);
    color: var(--light-text);
    box-shadow: 0 6px 20px rgba(255, 160, 0, 0.4);
    transform: translateY(-3px);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-color);
}

/* Top Bar Styles */
.top-bar {
    background: var(--gradient-dark);
    color: var(--light-text);
    padding: 10px 0;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info a {
    color: var(--light-text);
    margin-right: 20px;
    font-size: 0.9rem;
}

.contact-info a:hover {
    color: var(--accent-color);
}

.social-icons {
    display: flex;
}

.social-icon {
    color: var(--light-text);
    margin-left: 15px;
    font-size: 1rem;
}

.social-icon:hover {
    color: var(--accent-color);
}

/* Header Styles */
.header {
    background-color: #fff;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 15px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 70px;
}

.main-nav ul {
    display: flex;
}

.main-nav li {
    margin: 0 15px;
}

.main-nav a {
    color: var(--text-color);
    font-weight: 500;
    padding: 5px 0;
    position: relative;
}

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

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

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
    z-index: 1001;
}

/* Mobile menu active state */
.main-nav.active {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    z-index: 1000;
    padding: 80px 20px 20px;
    overflow-y: auto;
    text-align: center;
}

.main-nav.active ul {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: auto;
    padding: 0;
}

.main-nav.active li {
    margin: 15px 0;
    display: block;
    width: 100%;
}

.main-nav.active a {
    font-size: 1.2rem;
    color: var(--text-color);
    display: block;
    padding: 10px;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(78, 52, 46, 0.8), rgba(255, 160, 0, 0.7));
    background-size: cover;
    background-position: center;
    color: var(--light-text);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 213, 79, 0.2);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation: float 15s infinite ease-in-out;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: rgba(255, 213, 79, 0.15);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation: float 20s infinite ease-in-out reverse;
}

@keyframes float {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: var(--light-bg);
}

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

.service-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    background: var(--accent-color);
    opacity: 0.2;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    z-index: -1;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    width: 80px;
    height: 80px;
    line-height: 80px;
    background: var(--light-bg);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--gradient-primary);
    color: var(--light-text);
    transform: rotate(30deg);
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

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

.about-card {
    padding: 25px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.about-card:hover {
    transform: translateY(-5px);
}

.about-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.about-card h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.contact-form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

/* Improved service feature styling for mobile */
.service-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    position: relative;
    gap: 20px;
}

.feature-icon {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    margin-right: 20px;
}

/* Media query for mobile devices */
@media (max-width: 768px) {
    .service-feature {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }
    
    /* Hide feature icons on mobile except for add-on-services page */
    .feature-icon {
        display: none; /* Hide feature icons on mobile */
    }
    
    /* Keep feature icons visible on add-on-services page */
    .add-on-services .feature-icon {
        display: flex !important;
        margin: 0 auto 10px;
    }
    
    .feature-content {
        text-align: center;
    }
    
    .top-bar .container {
        flex-direction: column;
        gap: 10px;
    }
    
    /* Hide social icons on mobile */
    .social-icons {
        display: none;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero {
        padding: 70px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 10px 20px;
    }
}

/* Footer */
.footer {
    background: var(--gradient-dark);
    color: var(--light-text);
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: var(--gradient-primary);
}

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

.footer-logo img {
    height: 350px;
    margin-bottom: 15px;
}

.footer-logo p {
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.footer h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--light-text);
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-contact p {
    margin-bottom: 10px;
}

.footer-social {
    margin-top: 20px;
}

.footer-social .social-icon {
    margin-right: 15px;
    margin-left: 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .main-nav {
        display: none;
    }
    
    .btn.btn-primary.hexagon-btn {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
}

/* Improved paragraph formatting in list items */
li {
    margin-bottom: 10px;
    line-height: 1.6;
}

li i {
    margin-right: 8px;
    vertical-align: middle;
    color: var(--honey-gold);
}

.footer-contact li,
.footer-links li,
.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    padding-left: 5px;
}

.footer-contact li i,
.contact-info li i {
    margin-right: 10px;
    margin-top: 4px;
    flex-shrink: 0;
}

.footer-contact li p,
.contact-info li p {
    margin: 0;
    line-height: 1.5;
}
