/* ====================================
                HERO SECTION
==================================== */

.hero-section {
    min-height: 100vh;
    background: linear-gradient(
        120deg,
        var(--secondary-color) 0%,
        #ffffff 100%
    );
    position: relative;
}


.hero-content {
    padding-top: 160px;
}


.hero-text {
    max-width: 550px;
}


.hero-subtitle {
    display: inline-block;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.9rem;
    margin-bottom: 20px;
}


.hero-text h1 {
    margin-bottom: 25px;
}


.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 35px;
    max-width: 480px;
}


.hero-image {
    position: relative;
}


.hero-image img {
    height: 700px;
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-soft);
    object-position: center;
}


/* Decorative shape */

.hero-image::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    background: var(--primary-color);
    border-radius: 50%;
    top: -40px;
    right: -50px;
    z-index: -1;
}



/* ====================================
            PHILOSOPHY
==================================== */

.philosophy-section {
    background: var(--white-color);
}


.philosophy-text {
    max-width: 750px;
    margin: auto;
    text-align: center;
}


.philosophy-text p {
    font-size: 1.15rem;
}



/* ====================================
        FEATURED SERVICES
==================================== */

.services-preview {
    background: var(--secondary-color);
}


.service-card {
    background: var(--white-color);
    border-radius: var(--radius-medium);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    height: 100%;
    transition: var(--transition);
}


.service-card:hover {
    transform: translateY(-12px);
}


.service-card img {
    height: 280px;
}


.service-card h3 {
    padding: 30px 25px 15px;
}


.service-card p {
    padding: 0 25px;
}


.service-card span {
    display: block;
    padding: 25px;
    color: var(--accent-color);
    font-weight: 600;
    letter-spacing: 1px;
}



/* ====================================
            WHY CHOOSE US
==================================== */

.why-us {
    background: var(--white-color);
}


.why-us .col-md-3 {
    padding: 30px 25px;
}


.why-us h3 {
    color: var(--accent-color);
    font-size: 2.8rem;
    margin-bottom: 15px;
}


.why-us p {
    font-size: 1.05rem;
}



/* ====================================
            TESTIMONIALS
==================================== */

.testimonials {
    background: linear-gradient(
        135deg,
        var(--primary-color),
        var(--secondary-color)
    );
}


.testimonial-box {
    max-width: 800px;
    margin: auto;
    text-align: center;
}


.testimonial-box p {
    font-family: var(--heading-font);
    font-size: 2rem;
    color: var(--dark-color);
    line-height: 1.5;
}


.testimonial-box h4 {
    margin-top: 35px;
    color: var(--accent-color);
    font-size: 1.2rem;
}



/* ====================================
                CTA
==================================== */

.cta-section {
    background: var(--white-color);
    text-align: center;
}


.cta-section h2 {
    margin-bottom: 20px;
}


.cta-section p {
    max-width: 500px;
    margin: auto;
}



/* ====================================
        LUXURY DETAILS
==================================== */

/* Smooth card image zoom */

.service-card img {
    transition: transform 0.5s ease;
}


.service-card:hover img {
    transform: scale(1.05);
}


/* Subtle animation on hero image */

.hero-image img {
    transition: transform 0.5s ease;
}


.hero-image img:hover {
    transform: scale(1.02);
}