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

:root {
    --coral-orange: #FF6B6B;
    --teal: #4ECDC4;
    --teal-light: #75CCBB;
    --red: #C92A2A;
    --white: #FFFFFF;
    --dark-gray: #2C3E50;
    --light-gray: #ECF0F1;
    --text-gray: #555555;
    --header-bg: #F65D47;
}

html {
    scroll-behavior: smooth;
}

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

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

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

/* Header Styles */
.main-header {
    background-color: var(--header-bg);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo-container {
    flex-shrink: 0;
}

.logo {
    max-height: 80px;
    width: auto;
    display: block;
}

.main-nav {
    position: relative;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    transition: all 0.3s;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
}

.nav-menu li {
    position: relative;
}

.nav-menu a:not(.btn-nav) {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    padding: 10px 18px;
    position: relative;
    display: block;
    border-radius: 5px;
    white-space: nowrap;
}

.nav-menu a:not(.btn-nav):hover {
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--white);
    transform: translateY(-1px);
}

.nav-menu a:not(.btn-nav).active {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.nav-menu a:not(.btn-nav).active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background-color: var(--white);
    border-radius: 2px;
}

.btn-nav {
    background-color: #FFD700;
    color: var(--dark-gray);
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    min-width: fit-content;
}

.btn-nav:hover {
    background-color: #FFC700;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    opacity: 1;
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 200px);
}

/* Hero Section */
.hero-section {
    background-color: var(--header-bg);
    background-image: url('../pexels-falling4utah-2724749.jpg');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: var(--white);
    padding: 120px 0;
    position: relative;
    min-height: 600px;
    box-shadow: none;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
    box-shadow: none;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.8;
    opacity: 0.95;
}

.hero-image {
    position: relative;
    box-shadow: none;
}

.hero-image-placeholder,
.image-placeholder {
    background: linear-gradient(135deg, rgba(117, 204, 187, 0.2), rgba(78, 205, 196, 0.2));
    border-radius: 10px;
    padding: 100px 40px;
    text-align: center;
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 500;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 35px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

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

.btn-primary:hover {
    background-color: #3BA89F;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.btn-large {
    padding: 16px 45px;
    font-size: 18px;
}

/* Section Subtitle and Title */
.section-subtitle {
    display: inline-block;
    color: var(--teal);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--dark-gray);
    margin-bottom: 50px;
    font-weight: 700;
}

/* Services Overview Section */
.services-overview-section {
    padding: 100px 0;
    background-color: var(--white);
}

.services-overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.service-overview-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-overview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.service-overview-image {
    height: 300px;
    overflow: hidden;
    position: relative;
}

.service-overview-image .service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.service-overview-content {
    padding: 30px;
}

.service-overview-content h2 {
    color: var(--dark-gray);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.service-overview-content p {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

.service-features-list {
    list-style: none;
    padding: 0;
}

.service-features-list li {
    padding: 8px 0;
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: var(--light-gray);
}

.about-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.about-image-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--dark-gray);
    margin-bottom: 20px;
    font-weight: 700;
}

.about-text > p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 30px;
    line-height: 1.8;
}

.about-features {
    list-style: none;
    margin-bottom: 30px;
}

.about-features li {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.about-features li h4 {
    color: var(--dark-gray);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.about-features li p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Detailed Services Section */
.detailed-services-section {
    padding: 100px 0;
    background-color: #2C3E50;
    color: var(--white);
}

.detailed-services-section .section-subtitle {
    color: var(--teal);
}

.detailed-services-section .section-title {
    color: var(--white);
}

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

.service-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s, background-color 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.15);
}

.service-card .service-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.service-card h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background-color: var(--white);
}

.process-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.process-text h2 {
    font-size: 2.5rem;
    color: var(--dark-gray);
    margin-bottom: 40px;
    font-weight: 700;
}

.process-steps {
    margin-bottom: 30px;
}

.process-step {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--teal);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    color: var(--dark-gray);
    margin-bottom: 8px;
    font-size: 1.3rem;
}

.step-content p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background-color: var(--light-gray);
}

.features-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.features-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.features-image-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

.features-text h2 {
    font-size: 2.5rem;
    color: var(--dark-gray);
    margin-bottom: 40px;
    font-weight: 700;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon-large {
    font-size: 3rem;
    flex-shrink: 0;
}

.feature-item h3 {
    color: var(--dark-gray);
    margin-bottom: 8px;
    font-size: 1.3rem;
}

.feature-item p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background-color: var(--white);
}

.contact-content-wrapper {
    display: flex;
    justify-content: center;
    align-items: start;
}

.contact-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.contact-image-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

.contact-form-container {
    background-color: var(--white);
    max-width: 600px;
    width: 100%;
    text-align: center;
}

.contact-form-container h2 {
    font-size: 2.5rem;
    color: var(--dark-gray);
    margin-bottom: 30px;
    font-weight: 700;
}

.contact-info-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background-color: var(--light-gray);
    border-radius: 10px;
}

.contact-info-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contact-info-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-info-details h4 {
    color: var(--dark-gray);
    font-size: 1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-info-details p {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin: 0;
}

.contact-info-details a {
    color: var(--teal);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info-details a:hover {
    color: #3BA89F;
    text-decoration: underline;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid var(--light-gray);
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--teal);
}

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

.phone-overlay {
    background-color: #FFD700;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    color: var(--dark-gray);
    font-weight: 600;
    font-size: 1.2rem;
}

.phone-overlay a {
    color: var(--dark-gray);
    text-decoration: none;
}

.phone-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 10px;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background-color: var(--light-gray);
}

.testimonials-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.testimonials-text h2 {
    font-size: 2.5rem;
    color: var(--dark-gray);
    margin-bottom: 30px;
    font-weight: 700;
}

.testimonial-content {
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.quote-icon {
    font-size: 4rem;
    color: var(--teal);
    line-height: 1;
    margin-bottom: 20px;
}

.testimonial-content h3 {
    color: var(--dark-gray);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.testimonial-content > p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.testimonial-rating {
    margin-bottom: 20px;
}

.stars {
    color: #FFD700;
    font-size: 1.5rem;
}

.testimonial-author strong {
    display: block;
    color: var(--dark-gray);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Alerts */
.alert {
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.alert-success {
    background-color: #D4EDDA;
    color: #155724;
    border: 1px solid #C3E6CB;
}

.alert-error {
    background-color: #F8D7DA;
    color: #721C24;
    border: 1px solid #F5C6CB;
}

.alert h3 {
    margin-bottom: 10px;
}

/* Footer */
.main-footer {
    background-color: var(--dark-gray);
    color: var(--white);
    padding: 50px 0 20px;
    margin-top: 80px;
}

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

.footer-section h3 {
    margin-bottom: 15px;
    color: var(--teal);
}

.footer-section p {
    margin-bottom: 10px;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
    padding-left: 0;
}

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

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--teal);
}

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

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content-wrapper,
    .about-content-wrapper,
    .process-content-wrapper,
    .features-content-wrapper,
    .contact-content-wrapper,
    .testimonials-content-wrapper {
        grid-template-columns: 1fr;
    }

    .services-overview-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        right: 0;
        background-color: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        width: 200px;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        display: none;
        gap: 15px;
        border-radius: 0 0 5px 5px;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu a:not(.btn-nav) {
        color: var(--dark-gray);
        padding: 12px 18px;
        width: 100%;
        text-align: left;
    }

    .nav-menu a:not(.btn-nav):hover,
    .nav-menu a:not(.btn-nav).active {
        background-color: rgba(246, 93, 71, 0.1);
        color: var(--header-bg);
        opacity: 1;
    }

    .nav-menu a:not(.btn-nav).active::after {
        display: none;
    }

    .btn-nav {
        background-color: var(--header-bg);
        color: var(--white);
        width: 100%;
        margin-top: 10px;
        padding: 12px 20px;
    }

    .hero-section {
        min-height: 500px;
        padding: 80px 0;
        background-attachment: scroll;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-overview-section,
    .about-section,
    .detailed-services-section,
    .process-section,
    .features-section,
    .contact-section,
    .testimonials-section {
        padding: 60px 0;
    }

    .contact-info-box {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .logo {
        max-height: 60px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .services-overview-section,
    .about-section,
    .detailed-services-section,
    .process-section,
    .features-section,
    .contact-section,
    .testimonials-section {
        padding: 40px 0;
    }

    .service-overview-content,
    .testimonial-content {
        padding: 25px;
    }
}
