:root {
    /* Color Palette */
    --primary-color: #075657;
    --secondary-color: #62B352;
    --accent-color: #257F76;
    --bg-color: #F8FBFB;
    --text-color: #1A2624;
    --btn-hover: #043e3f;
    --white: #ffffff;
    --cream: #EAF3F2;
    --light-gray: #f4f4f4;
    
    /* Typography */
    --heading-font: 'Tenor Sans', sans-serif;
    --body-font: 'Open Sans', sans-serif;
    --accent-font: 'Tenor Sans', sans-serif;
    
    /* Transitions */
    --transition: all 0.3s ease;
    
    /* Spacing */
    --container-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: clamp(1rem, 1vw + 0.8rem, 1.15rem);
}

h1, h2, h3, h4 {
    font-family: var(--heading-font);
    font-weight: 700;
    color: var(--primary-color);
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 100px 0;
}

.bg-cream {
    background-color: var(--cream);
}

/* Header */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    padding: 20px 0;
    transition: var(--transition);
}

.main-header.scrolled {
    background: var(--primary-color);
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

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

.logo img {
    height: 75px;
    width: auto;
    object-fit: contain;
    background-color: var(--white);
    border-radius: 8px;
    padding: 10px 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    transition: var(--transition);
    display: block;
}

.logo:hover img {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--white);
    font-weight: 700;
    font-size: 0.95rem;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-call {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-call:hover {
    background-color: transparent;
    border-color: var(--secondary-color);
    color: var(--white);
    transform: scale(1.05);
}

.btn-call i {
    font-size: 1rem;
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: var(--white);
    transition: var(--transition);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--btn-hover);
    transform: translateY(-3px);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--btn-hover);
    transform: translateY(-3px);
}

/* Hero Section */
.hero {
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

/* Page Hero Adjustments */
.page-hero {
    height: 60vh !important;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-inline: auto;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Section Header */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.sub-title {
    display: block;
    color: var(--secondary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* Grids */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.align-center {
    align-items: center;
}

@media (max-width: 992px) {
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: var(--accent-color);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    width: 50%;
    padding-right: 40px;
}

.timeline-item:nth-child(even) {
    margin-left: 50%;
    padding-right: 0;
    padding-left: 40px;
}

.timeline-dot {
    position: absolute;
    top: 0;
    right: -10px;
    width: 20px;
    height: 20px;
    background: var(--secondary-color);
    border-radius: 50%;
    z-index: 1;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -10px;
}

.timeline-content {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.timeline-content h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .timeline::before {
        left: 20px;
    }
    .timeline-item {
        width: 100%;
        padding-left: 50px;
        padding-right: 0;
    }
    .timeline-item:nth-child(even) {
        margin-left: 0;
    }
    .timeline-dot {
        left: 10px !important;
    }
}

/* Accent Text */
.accent-text {
    font-family: var(--accent-font);
    font-style: italic;
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin: 20px 0;
}

/* Services Page Specific */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.85rem;
    color: var(--secondary-color);
    font-weight: 600;
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.pricing-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    transition: var(--transition);
}

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

.pricing-card.featured {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.05);
}

.pricing-card.featured h3, 
.pricing-card.featured .price,
.pricing-card.featured .price span {
    color: var(--white);
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.price {
    font-size: 3rem;
    font-family: var(--heading-font);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-color);
    opacity: 0.6;
}

.pricing-list {
    margin-bottom: 40px;
    text-align: left;
}

.pricing-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-list li.disabled {
    opacity: 0.4;
    text-decoration: line-through;
}

/* Testimonials Page Specific */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.star-rating {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.badges-flex {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.badge-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.badge-item i {
    font-size: 3rem;
    color: var(--primary-color);
}

.badge-item span {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* Contact Page Specific */
.contact-form {
    margin-top: 30px;
}

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

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 10px;
    outline: none;
    font-family: var(--body-font);
    background: var(--white);
    transition: var(--transition);
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 10px rgba(212, 163, 115, 0.1);
}

.contact-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.contact-detail-card {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
}

.contact-detail-card i {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.contact-detail-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.contact-detail-card p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 2rem;
    z-index: 999;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

@media (max-width: 992px) {
    .contact-card-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .contact-card-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-detail-card {
        padding: 20px;
    }
}

/* Modern Features Style */
.features-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card-modern {
    perspective: 1000px;
}

.card-inner {
    background: var(--white);
    padding: 50px 30px;
    border-radius: 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    box-shadow: 0 10px 40px rgba(26, 77, 62, 0.05);
    border: 1px solid rgba(212, 163, 115, 0.1);
}

.feature-card-modern:hover .card-inner {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(26, 77, 62, 0.1);
    border-color: var(--secondary-color);
}

.icon-box {
    width: 70px;
    height: 70px;
    background: var(--bg-color);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    margin: 0 auto 25px;
    font-size: 1.8rem;
    transition: var(--transition);
    transform: rotate(45deg);
}

.icon-box i {
    transform: rotate(-45deg);
}

.feature-card-modern:hover .icon-box {
    background: var(--primary-color);
    color: var(--white);
    transform: rotate(0deg);
}

.feature-card-modern:hover .icon-box i {
    transform: rotate(0deg);
}

.feature-card-modern h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-family: var(--heading-font);
}

.feature-card-modern p {
    font-size: 0.95rem;
    opacity: 0.7;
    line-height: 1.6;
}

.card-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--secondary-color);
    transform: scaleX(0);
    transition: var(--transition);
}

.feature-card-modern:hover .card-accent {
    transform: scaleX(1);
}

@media (max-width: 480px) {
    .features-grid-modern {
        grid-template-columns: 1fr;
    }
}

/* Service Cards */
.service-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    height: 100%;
}

.service-img {
    height: 250px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-img img {
    transform: scale(1.1);
}

.service-info {
    padding: 30px;
}

.service-info h3 {
    margin-bottom: 15px;
}

.read-more {
    color: var(--secondary-color);
    font-weight: 600;
    display: inline-block;
    margin-top: 15px;
}

/* Testimonial Cards */
.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    position: relative;
}

.quote-icon {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
}

.client-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.client-info h4 {
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.client-info span {
    font-size: 0.85rem;
    color: var(--secondary-color);
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-family: var(--heading-font);
    font-size: 1.2rem;
}

.faq-answer {
    padding: 0 30px 20px;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .fa-plus::before {
    content: "\f068";
}

/* Newsletter */
.newsletter-box {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px;
    border-radius: 30px;
    text-align: center;
}

.newsletter-box h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 30px auto 0;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 25px;
    border-radius: 50px;
    border: none;
    outline: none;
}

/* Footer */
.main-footer {
    background: var(--primary-color);
    color: var(--white);
}

.main-footer .logo-text {
    color: var(--white);
}

/* Footer */
.main-footer {
    background: var(--primary-color);
    color: var(--white);
    padding-top: 100px;
    padding-bottom: 50px;
}

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

.footer-col h3 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
    font-family: var(--heading-font);
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--secondary-color);
}

.main-footer .logo img {
    height: 90px;
    margin-bottom: 25px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    border-radius: 10px;
}

.footer-about p {
    margin: 25px 0;
    opacity: 0.8;
    line-height: 1.8;
}

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

.footer-links ul li a {
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.footer-links ul li a i {
    font-size: 0.8rem;
    color: var(--secondary-color);
}

.footer-links ul li a:hover {
    opacity: 1;
    color: var(--secondary-color);
    padding-left: 5px;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-item i {
    color: var(--secondary-color);
    margin-top: 5px;
}

.contact-item strong {
    display: block;
    font-size: 0.9rem;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.contact-item p {
    font-size: 0.95rem;
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.1rem;
    transition: var(--transition);
    color: var(--white);
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
}

.footer-bottom {
    margin-top: 80px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    opacity: 0.6;
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal li a {
    font-size: 0.9rem;
    opacity: 0.6;
}

.footer-legal li a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

/* Back to Top */
/* Back to Top - New Modern Style */
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--secondary-color);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 999;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.5);
    box-shadow: 0 10px 30px rgba(26, 77, 62, 0.2);
}

#backToTop.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

#backToTop:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 40px rgba(212, 163, 115, 0.3);
}

#backToTop i {
    transition: transform 0.3s ease;
}

#backToTop:hover i {
    transform: translateY(-3px);
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background: var(--bg-color);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        transition: 0.5s ease;
        z-index: 1001;
        display: flex;
    }

    .nav-links a {
        color: var(--primary-color);
        font-size: 1.2rem;
        margin: 15px 0;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .hamburger {
        display: flex;
        z-index: 1002;
    }
    
    .hamburger.active span {
        background-color: var(--primary-color);
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .hero-btns {
        flex-direction: column;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}


@media (max-width: 576px) { .btn-call span { display: none; } .btn-call { padding: 10px; width: 40px; height: 40px; justify-content: center; } }


@media (max-width: 768px) { .page-hero { height: 40vh !important; } .contact-form-container { padding: 0 10px; } }
