/* --- RESET & VARIABLES --- */
:root {
    --primary-color: #D14B6E;
    --primary-hover: #b03a58;
    --dark-bg: #222831;
    --darker-bg: #1A1F26;
    --text-dark: #333333;
    --text-grey: #666666;
    --text-light-grey: #999999;
    --white: #ffffff;
    --border-color: #eeeeee;
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Roboto', sans-serif;
    --font-logo: 'Great Vibes', cursive;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-grey);
    line-height: 1.6;
    overflow-x: hidden;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* --- UTILITIES --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
    border: none;
    transition: background 0.3s ease;
}

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

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

.sub-heading {
    color: var(--primary-color);
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1rem;
    margin-bottom: 10px;
    font-weight: 500;
}

.main-heading {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-size: 2.8rem;
    text-transform: uppercase;
    margin-bottom: 25px;
    line-height: 1.2;
    font-weight: 400;
}

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

.mt-20 {
    margin-top: 20px;
}

/* --- TOP HEADER --- */
.top-header {
    background: var(--white);
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

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

.logo {
    display: flex;
    align-items: center;
    color: #333;
}

.logo-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-right: 10px;
}

.logo-text h1 {
    font-family: var(--font-logo);
    font-size: 2rem;
    line-height: 1;
    color: #333;
    font-weight: 400;
}

.logo-text small {
    font-family: var(--font-body);
    font-size: 0.7rem;
    letter-spacing: 1px;
    display: block;
    text-transform: uppercase;
    color: #888;
}

.contact-info {
    display: flex;
    gap: 30px;
}

.phone-block {
    display: flex;
    align-items: center;
    gap: 10px;
}

.phone-block i {
    font-size: 1.5rem;
    color: #333;
    font-weight: 300;
}

.phone-block div {
    display: flex;
    flex-direction: column;
}

.phone-block span {
    font-size: 0.65rem;
    text-transform: uppercase;
    color: #999;
    letter-spacing: 0.5px;
}

.phone-block a {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: #333;
    font-weight: 500;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--primary-color);
    cursor: pointer;
}

/* --- NAVIGATION --- */
.main-nav {
    background-color: var(--dark-bg);
    color: var(--white);
}

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

.nav-links {
    display: flex;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    display: block;
    padding: 18px 20px;
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    color: #ddd;
    border-top: 3px solid transparent;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
    border-top-color: var(--primary-color);
}

.dropdown i {
    margin-left: 5px;
    font-size: 0.8rem;
}

.search-item a {
    border-top: none;
    padding-right: 0;
}

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

.social-links a {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: #ccc;
    transition: 0.3s;
}

.social-links a:hover {
    background: var(--primary-color);
    color: white;
}

/* --- HERO SECTION --- */
.hero {
    height: 600px;
    background-image: url('https://images.unsplash.com/photo-1560066984-138dadb4c035?ixlib=rb-4.0.3&auto=format&fit=cover&w=1920&q=80');
    background-size: cover;
    background-position: center;
    position: relative;
    width: 100%;
}

.custom-shape-divider-bottom-16789 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-bottom-16789 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 120px;
}

.custom-shape-divider-bottom-16789 .shape-fill {
    fill: #FFFFFF;
}

/* --- INTRO SECTION --- */
.intro-section {
    padding: 80px 0 60px;
    background: var(--white);
}

.section-desc {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
}

/* --- GALLERY ROW --- */
.gallery-row {
    padding-bottom: 80px;
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    align-items: end;
}

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

.gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    object-fit: cover;
    aspect-ratio: 3/4;
    transition: transform 0.3s;
}

.gallery-item img:hover {
    transform: translateY(-10px);
}

/* --- STATS SECTION --- */
.stats-section {
    background-color: var(--dark-bg);
    padding: 60px 0;
    color: var(--white);
}

.stats-flex {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 220px;
}

.stat-icon {
    font-size: 3.5rem;
    color: transparent;
    -webkit-text-stroke: 1px var(--primary-color);
}

.stat-icon::before {
    color: transparent;
    -webkit-text-stroke: 1px var(--primary-color);
}

.stat-box:nth-child(1) .stat-icon {
    font-size: 3rem;
}

.stat-box:nth-child(2) .stat-icon {
    font-size: 3rem;
}

.stat-text h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-text p {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ccc;
}

/* --- OWNER SECTION --- */
.owner-section {
    background: var(--white);
    padding: 80px 0;
}

.owner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.text-link {
    color: var(--primary-color);
    text-decoration: none;
}

.owner-social {
    margin-top: 25px;
    display: flex;
    gap: 15px;
}

.owner-social a {
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
}

.owner-social a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.owner-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* --- REVIEWS SECTION --- */
.reviews-section {
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1632297138383-74d30c000d6c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
    color: var(--white);
}

.reviews-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 36, 46, 0.85);
    z-index: 1;
}

.content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.sub-heading-small {
    color: var(--primary-color);
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.main-heading-white {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: 2.5rem;
    text-transform: uppercase;
    margin-bottom: 40px;
    font-weight: 400;
}

/* Slider CSS */
.reviews-slider {
    position: relative;
    width: 100%;
    /* Min-height prevents jumping if content length varies slightly */
    min-height: 250px;
}

.review-slide {
    display: none;
    padding: 0 20px;
    animation: fadeIn 0.8s ease;
}

.review-slide.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.review-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic;
    color: #ddd;
}

.stars {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.stars i {
    margin: 0 2px;
}

.reviewer-name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.reviewer-location {
    font-size: 0.8rem;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.carousel-dots {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    cursor: pointer;
    background-color: transparent;
    transition: all 0.3s;
}

.dot.active,
.dot:hover {
    background-color: var(--primary-color);
}

/* --- INFO GRID --- */
.info-grid {
    background-color: var(--dark-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.info-flex {
    display: flex;
}

.info-box {
    flex: 1;
    padding: 60px 20px;
    text-align: center;
    color: #aaa;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.info-box:last-child {
    border-right: none;
}

.icon-outline {
    font-size: 3rem;
    margin-bottom: 20px;
    color: transparent;
    -webkit-text-stroke: 1px #555;
}

.info-box h3 {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.info-box p {
    font-size: 0.9rem;
    margin-bottom: 5px;
}

/* --- FOOTER --- */
.main-footer {
    background-color: var(--darker-bg);
    color: #777;
    padding-top: 70px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 70px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo .logo-text h1 {
    color: #fff;
}

.footer-logo .logo-text small {
    color: #888;
}

.footer-logo .logo-icon {
    color: var(--primary-color);
}

.about-col p {
    font-size: 0.9rem;
    margin-bottom: 25px;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 35px;
    height: 35px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.8rem;
}

.footer-social a:hover {
    background: var(--primary-color);
}

.footer-col h3 {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    font-size: 0.9rem;
    color: #777;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.newsletter-form {
    display: flex;
    margin-bottom: 15px;
}

.newsletter-form input {
    flex: 1;
    background: transparent;
    border: 1px solid #444;
    padding: 10px 15px;
    color: #fff;
    font-family: var(--font-body);
}

.newsletter-form button {
    background: var(--primary-color);
    border: none;
    color: #fff;
    padding: 0 20px;
    cursor: pointer;
    font-family: var(--font-heading);
    text-transform: uppercase;
    transition: 0.3s;
}

.newsletter-form button:hover {
    background: var(--primary-hover);
}

.footer-small-text {
    font-size: 0.85rem;
    line-height: 1.5;
}

.copyright-bar {
    background: #15191f;
    padding: 20px 0;
    border-top: 1px solid #222;
}

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

.copyright-bar p {
    font-size: 0.8rem;
    color: #555;
}

.scroll-top {
    width: 35px;
    height: 35px;
    border: 1px solid #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
}

.scroll-top:hover {
    color: var(--white);
    border-color: var(--white);
}

/* --- RESPONSIVE MEDIA QUERIES --- */

/* Tablet & Smaller Desktop */
@media (max-width: 1024px) {
    .header-flex {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
        text-align: center;
    }

    .contact-info {
        display: none;
    }

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

/* Mobile & Tablet Portrait */
@media (max-width: 768px) {

    /* Header */
    .top-header {
        padding: 10px 0;
    }

    .header-flex {
        justify-content: space-between;
        padding: 0 20px;
        flex-wrap: nowrap;
    }

    .header-action,
    .contact-info {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    /* Nav */
    .main-nav {
        height: 0;
        overflow: hidden;
        transition: height 0.3s ease;
    }

    .main-nav.open {
        height: auto;
    }

    .nav-flex {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 0;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
    }

    .nav-links a {
        padding: 10px 0;
        border: none;
    }

    .social-links {
        margin-top: 15px;
    }

    /* Hero */
    .hero {
        height: 400px;
    }

    .main-heading {
        font-size: 2rem;
    }

    /* Stats */
    .stats-flex {
        flex-direction: column;
        align-items: center;
    }

    .stat-box {
        justify-content: flex-start;
        width: 200px;
    }

    /* Owner */
    .owner-grid {
        grid-template-columns: 1fr;
    }

    .owner-image {
        order: -1;
    }

    /* Info Grid */
    .info-flex {
        flex-direction: column;
    }

    .info-box {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .copyright-bar .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

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

    .main-heading {
        font-size: 1.8rem;
    }

    .logo-text h1 {
        font-size: 1.5rem;
    }
}