/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333333;
    background-color: #F5F5DC;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #2D5016;
    color: #FFFFFF;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo h1 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
}

.dot-approved {
    font-size: 12px;
    background-color: #FF8C00;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 600;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-menu li a {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu li a:hover {
    color: #FF8C00;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #FF8C00;
    transition: width 0.3s ease;
}

.nav-menu li a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #FFFFFF;
    transition: all 0.3s ease;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 100vh;
    margin-top: 70px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-content {
    text-align: center;
    color: #FFFFFF;
    padding: 20px;
    animation: slideUp 1s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-content h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-content p {
    font-size: 24px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.cta-button {
    display: inline-block;
    background-color: #FF8C00;
    color: #FFFFFF;
    padding: 15px 40px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

.cta-button:hover {
    background-color: #E67E00;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.3);
    color: #FFFFFF;
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    font-size: 24px;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-btn:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.slider-btn.prev {
    left: 20px;
}

.slider-btn.next {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: #FF8C00;
    width: 30px;
    border-radius: 6px;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 600;
    color: #2D5016;
    margin-bottom: 15px;
}

.section-divider {
    width: 80px;
    height: 4px;
    background-color: #FF8C00;
    margin: 0 auto 15px;
}

.section-header p {
    font-size: 18px;
    color: #666666;
}

/* About Section */
.about-section {
    background-color: #FFFFFF;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555555;
}

/* Services Section */
.services-section {
    background-color: #F5F5DC;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background-color: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #FF8C00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 24px;
    z-index: 1;
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: #2D5016;
    padding: 20px 20px 10px;
}

.service-card p {
    padding: 0 20px 20px;
    color: #666666;
    line-height: 1.6;
}

/* Packages Section */
.packages-section {
    background-color: #FFFFFF;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.package-card {
    background-color: #F5F5DC;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.package-card.featured {
    background: linear-gradient(135deg, #2D5016 0%, #3D6B1F 100%);
    color: #FFFFFF;
    transform: scale(1.05);
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.package-card.featured:hover {
    transform: scale(1.08) translateY(-5px);
}

.package-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.package-header h3 {
    font-size: 28px;
    font-weight: 600;
    color: #2D5016;
}

.package-card.featured .package-header h3 {
    color: #FFFFFF;
}

.package-badge {
    background-color: #FF8C00;
    color: #FFFFFF;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.package-timing {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding: 15px;
    background-color: rgba(255, 140, 0, 0.1);
    border-radius: 8px;
}

.package-card.featured .package-timing {
    background-color: rgba(255, 255, 255, 0.1);
}

.package-timing i {
    color: #FF8C00;
    font-size: 20px;
}

.package-card.featured .package-timing i {
    color: #FFFFFF;
}

.package-includes {
    margin-bottom: 25px;
}

.package-includes h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #2D5016;
}

.package-card.featured .package-includes h4 {
    color: #FFFFFF;
}

.package-includes ul {
    list-style: none;
}

.package-includes li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #555555;
}

.package-card.featured .package-includes li {
    color: #FFFFFF;
}

.package-includes li i {
    color: #2D5016;
    font-size: 16px;
}

.package-card.featured .package-includes li i {
    color: #FF8C00;
}

.package-pricing {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.price-item {
    text-align: center;
    padding: 20px;
    background-color: #FFFFFF;
    border-radius: 8px;
}

.package-card.featured .price-item {
    background-color: rgba(255, 255, 255, 0.1);
}

.price-label {
    display: block;
    font-size: 14px;
    color: #666666;
    margin-bottom: 10px;
}

.package-card.featured .price-label {
    color: #FFFFFF;
}

.price-amount {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #FF8C00;
    margin-bottom: 5px;
}

.package-card.featured .price-amount {
    color: #FFFFFF;
}

.price-unit {
    display: block;
    font-size: 14px;
    color: #666666;
}

.package-card.featured .price-unit {
    color: #FFFFFF;
}

.package-note {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background-color: rgba(255, 140, 0, 0.1);
    border-radius: 8px;
    margin-bottom: 25px;
    font-size: 14px;
    color: #666666;
}

.package-card.featured .package-note {
    background-color: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
}

.package-note i {
    color: #FF8C00;
}

.package-card.featured .package-note i {
    color: #FFFFFF;
}

.package-btn {
    display: block;
    width: 100%;
    background-color: #FF8C00;
    color: #FFFFFF;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
}

.package-btn:hover {
    background-color: #E67E00;
    transform: translateY(-2px);
}

.package-card.featured .package-btn {
    background-color: #FFFFFF;
    color: #2D5016;
}

.package-card.featured .package-btn:hover {
    background-color: #FF8C00;
    color: #FFFFFF;
}

.important-notes {
    margin-top: 50px;
    padding: 30px;
    background-color: #FFF3E0;
    border-left: 4px solid #FF8C00;
    border-radius: 8px;
}

.important-notes h3 {
    font-size: 24px;
    color: #2D5016;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.important-notes h3 i {
    color: #FF8C00;
}

.important-notes ul {
    list-style: none;
}

.important-notes li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 16px;
    color: #555555;
}

.important-notes li i {
    color: #FF8C00;
    font-size: 20px;
}

/* Gallery Section */
.gallery-section {
    background-color: #F5F5DC;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    height: 200px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(45, 80, 22, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: #FFFFFF;
    font-size: 48px;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from { transform: translate(-50%, -50%) scale(0.5); }
    to { transform: translate(-50%, -50%) scale(1); }
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #FFFFFF;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: #FF8C00;
}

/* Video Section */
.video-section {
    background-color: #FFFFFF;
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
}

.video-thumbnail {
    position: relative;
    cursor: pointer;
    border-radius: 12px;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: rgba(255, 140, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.video-thumbnail:hover .play-button {
    background-color: rgba(255, 140, 0, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button i {
    color: #FFFFFF;
    font-size: 36px;
    margin-left: 5px;
}

/* Video Popup */
.video-popup {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
}

.video-popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 900px;
    height: 70%;
}

.video-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #FFFFFF;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 2001;
}

.video-close:hover {
    color: #FF8C00;
}

/* Why Us Section */
.why-us-section {
    background-color: #F5F5DC;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.why-us-card {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.why-us-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.why-us-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2D5016 0%, #3D6B1F 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #FFFFFF;
    font-size: 36px;
}

.why-us-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: #2D5016;
    margin-bottom: 15px;
}

.why-us-card p {
    color: #666666;
    line-height: 1.6;
}

/* FAQs Section */
.faqs-section {
    background-color: #FFFFFF;
}

.faqs-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: #F5F5DC;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #E8E8D0;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: #2D5016;
}

.faq-question i {
    color: #FF8C00;
    font-size: 20px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 25px 20px;
}

.faq-answer p {
    color: #555555;
    line-height: 1.8;
}

/* Clients Section */
.clients-section {
    background-color: #F5F5DC;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.testimonial-rating {
    margin-bottom: 15px;
}

.testimonial-rating i {
    color: #FF8C00;
    font-size: 18px;
    margin-right: 3px;
}

.testimonial-text {
    font-size: 16px;
    color: #555555;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author h4 {
    font-size: 18px;
    font-weight: 600;
    color: #2D5016;
    margin-bottom: 5px;
}

.testimonial-author span {
    font-size: 14px;
    color: #999999;
}

/* Contact Section */
.contact-section {
    background-color: #FFFFFF;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2D5016 0%, #3D6B1F 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 24px;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2D5016;
    margin-bottom: 10px;
}

.contact-details p {
    color: #666666;
    line-height: 1.6;
}

.contact-details a {
    color: #FF8C00;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #E67E00;
}

.contact-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.whatsapp-btn,
.call-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 25px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.whatsapp-btn {
    background-color: #25D366;
    color: #FFFFFF;
}

.whatsapp-btn:hover {
    background-color: #1EBE57;
    transform: translateY(-2px);
}

.call-btn {
    background-color: #FF8C00;
    color: #FFFFFF;
}

.call-btn:hover {
    background-color: #E67E00;
    transform: translateY(-2px);
}

.contact-form {
    background-color: #F5F5DC;
    padding: 40px;
    border-radius: 12px;
}

.contact-form h3 {
    font-size: 24px;
    font-weight: 600;
    color: #2D5016;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FF8C00;
}

.submit-btn {
    width: 100%;
    background-color: #FF8C00;
    color: #FFFFFF;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: #E67E00;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background-color: #2D5016;
    color: #FFFFFF;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-section p {
    color: #E0E0E0;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #E0E0E0;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #FF8C00;
}

.footer-section ul li i {
    margin-right: 10px;
    color: #FF8C00;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #FF8C00;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: #E0E0E0;
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #FF8C00;
    color: #FFFFFF;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background-color: #E67E00;
    transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #2D5016;
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .slide-content h2 {
        font-size: 32px;
    }

    .slide-content p {
        font-size: 18px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .packages-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .slider-btn {
        padding: 10px 15px;
        font-size: 18px;
    }

    .contact-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 20px;
    }

    .slide-content h2 {
        font-size: 24px;
    }

    .slide-content p {
        font-size: 16px;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 16px;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .services-grid,
    .gallery-grid,
    .why-us-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .package-card.featured {
        transform: scale(1);
    }

    .package-pricing {
        grid-template-columns: 1fr;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #F5F5DC;
}

::-webkit-scrollbar-thumb {
    background: #2D5016;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #FF8C00;
}