/* ---------------------------------------------------
   GLOBAL RESET + BASE STYLING
--------------------------------------------------- */
body {
    scroll-behavior: smooth;
    font-family: "Source Sans Pro", sans-serif;
    background: var(--background);
    color: var(--text);
}

h1,
h2,
h3,
h4,
h5 {
    font-weight: 600;
}

.section-spacing {
    padding: 90px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    text-align: center;
}

/* ---------------------------------------------------
   NAVBAR
--------------------------------------------------- */
.navbar {
    background: #fff;
    transition: 0.3s ease;
}

.nav-link-modern {
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 6px;
    transition: 0.3s;
}

.nav-link-modern:hover {
    background: var(--primary);
    color: #fff !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* ---------------------------------------------------
   HERO SECTION
--------------------------------------------------- */
.hero {
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 20px;
}

.hero-overlay h1 {
    font-size: 4rem;
    animation: fadeDown 1.2s ease;
}

.hero-overlay p {
    font-size: 1.4rem;
    animation: fadeUp 1.2s ease;
}

/* Buttons */
.btn-modern-primary {
    background: var(--primary);
    color: #fff;
    font-weight: 600;
    border-radius: 50px;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

/* ---------------------------------------------------
   SERVICE CARDS
--------------------------------------------------- */
.modern-card {
    background: #fff;
    border-radius: 14px;
    padding: 25px;
    text-align: center;
    font-weight: 500;
    color: var(--text);
    border-left: 6px solid var(--primary);
    transition: 0.4s;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.12);
}

.modern-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* ---------------------------------------------------
   GALLERY
--------------------------------------------------- */
.gallery-card {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: 0.4s;
}

.gallery-card:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.gallery-img-modern {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

/* ---------------------------------------------------
   CONTACT BOX
--------------------------------------------------- */
.contact-box {
    max-width: 500px;
    margin: 0 auto;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    color: var(--text);
}

/* ---------------------------------------------------
   FOOTER
--------------------------------------------------- */
.footer-modern {
    background: var(--primary);
    color: #fff;
    font-size: 0.95rem;
}

/* ---------------------------------------------------
   ANIMATIONS
--------------------------------------------------- */
@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

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

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

/* ---------------------------------------------------
   THEME SYSTEM — COLORS SET BY CSS VARIABLES
--------------------------------------------------- */
/* All themes use these variables:
    --primary  
    --secondary
    --background
    --text
    --accent
*/

/* ---------------------------------------------------
   THEME 1 — ROYAL BLUE (DEFAULT)
--------------------------------------------------- */
.theme-blue {
    --primary: #1a73e8;
    --secondary: #6aa7ff;
    --background: #f3f7ff;
    --text: #1a1a1a;
    --accent: #0049c7;
}

/* ---------------------------------------------------
   THEME 2 — LUXURY GOLD
--------------------------------------------------- */
.theme-gold {
    --primary: #c5a100;
    --secondary: #ffdc73;
    --background: #fff9e6;
    --text: #3d2e00;
    --accent: #a58300;
}

/* ---------------------------------------------------
   THEME 3 — ROYAL PURPLE
--------------------------------------------------- */
.theme-purple {
    --primary: #6f42c1;
    --secondary: #b28dff;
    --background: #f7f2ff;
    --text: #23004d;
    --accent: #5a2ea6;
}

/* ---------------------------------------------------
   THEME 4 — EMERALD GREEN
--------------------------------------------------- */
.theme-green {
    --primary: #0f9d58;
    --secondary: #70d39c;
    --background: #effff6;
    --text: #083821;
    --accent: #0a6d3f;
}

/* ---------------------------------------------------
   THEME 5 — SUNSET ORANGE / CORAL
--------------------------------------------------- */
.theme-orange {
    --primary: #ff7043;
    --secondary: #ffa582;
    --background: #fff3eb;
    --text: #4d1f07;
    --accent: #e85a2f;
}

/* ---------------------------------------------------
   THEME 6 — MINIMAL BLACK & WHITE
--------------------------------------------------- */
.theme-minimal {
    --primary: #000000;
    --secondary: #777;
    --background: #fafafa;
    --text: #000;
    --accent: #333333;
}

/* ====================================================
   INLINE STYLES FROM INDEX.PHP
   ==================================================== */

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

body {
    overflow-x: hidden;
}

/* ============================
   PREHEADER (TOP BAR)
   ============================ */
.preheader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
    background: #1e1e1e;
    color: #fff;
    padding: 6px 0;
    font-size: 0.9rem;
}

.preheader a {
    color: #eaeaea;
    text-decoration: none;
}

.preheader a:hover {
    color: var(--primary);
}

/* Preheader Social Icons */
.preheader .social-brand {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: #fff;
    transition: 0.25s ease;
}

/* Brand Colors */
.social-brand.fb {
    background: #1877F2;
}

.social-brand.ig {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-brand.x {
    background: #000000;
}

.social-brand.wa {
    background: #25D366;
}

.social-brand.youtube {
    background: #FF0000;
}

.social-brand.linkedin {
    background: #0077B5;
}

/* Hover */
.social-brand:hover {
    transform: translateY(-3px);
}

/* MOBILE – preheader stack */
@media(max-width: 576px) {
    .preheader {
        padding: 4px 0;
        font-size: 0.75rem;
    }

    .preheader .container {
        display: flex !important;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 8px;
        padding-left: 12px;
        padding-right: 12px;
    }

    .preheader .social-brand {
        width: 22px;
        height: 22px;
        font-size: 0.75rem;
    }

    .preheader a {
        font-size: 0.75rem;
    }
}

/* ============================
   NAVBAR
   ============================ */
.navbar {
    background: white !important;
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    margin-top: 35px;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary) !important;
}

.nav-link {
    font-weight: 500;
    margin: 0 8px;
    padding: 10px 20px !important;
    border-radius: 5px;
    color: var(--text) !important;
    transition: 0.3s;
}

.nav-link:hover {
    background: var(--primary);
    color: white !important;
    transform: translateY(-2px);
}

/* Mobile navbar offset */
@media(max-width: 576px) {
    .navbar {
        margin-top: 30px;
    }

    body {
        padding-top: 95px;
    }
}

/* Desktop navbar offset */
@media(min-width: 577px) {
    body {
        padding-top: 85px;
    }
}

/* ============================
   HERO
   ============================ */
.hero {
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    text-align: center;
    color: white;
    z-index: 2;
    padding: 20px;
}

.hero h1 {
    font-size: 5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease;
}

.hero p {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1.2s ease;
}

.hero-btn {
    background: var(--primary);
    color: white;
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: inline-block;
    animation: fadeInUp 1.4s ease;
}

.hero-btn:hover {
    background: var(--accent);
    transform: translateY(-5px);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* Mobile hero sizing */
@media(max-width: 576px) {
    .hero {
        height: 70vh;
        background-attachment: scroll;
        padding: 20px;
    }

    .hero h1 {
        font-size: 2.3rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .hero-btn {
        padding: 14px 30px;
        font-size: 1rem;
    }
}

/* ============================
   GLOBAL SECTIONS
   ============================ */
.section {
    padding: 100px 0;
}

.section-title {
    color: var(--primary);
    text-align: center;
    font-size: 2rem !important;
    font-weight: 600 !important;
}

.section-subtitle {
    text-align: center;
    font-size: 1rem !important;
    margin-bottom: 4rem;
}

/* ============================
   SERVICES
   ============================ */
#services {
    background: #efefefff !important;
    padding-top: 80px !important;
    padding-bottom: 80px !important;
}

.service-card {
    background: white;
    border-radius: 2px;
    padding: 40px 30px;
    text-align: center;
    transition: 0.4s;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: var(--primary);
}

/* ============================
   ABOUT
   ============================ */
.about-box {
    background: white;
    border-radius: 25px;
    padding: 50px;
    border-left: 8px solid var(--primary);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

/* ============================
   GALLERY
   ============================ */
.gallery-item {
    position: relative;
    height: 350px;
    border-radius: 5px;
    overflow: hidden;
    transition: 0.4s;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-item:hover {
    transform: scale(1.05);
}

/* ============================
   GOOGLE REVIEWS SECTION
   ============================ */
#reviews {
    background: var(--background);
    padding: 80px 0;
}

.review-embed-container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.review-embed-container iframe {
    width: 100%;
    min-height: 500px;
    border: none;
    border-radius: 10px;
}

.google-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    font-size: 0.9rem;
    color: #666;
}

.google-badge img {
    height: 24px;
}

@media(max-width: 576px) {
    .review-embed-container {
        padding: 20px;
    }

    .review-embed-container iframe {
        min-height: 400px;
    }
}

/* ============================
   CONTACT
   ============================ */
.contact-item {
    background: #fff;
    padding: 25px 30px;
    border-radius: 10px;
    margin-bottom: 25px;
    border: 1px solid #ececec;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: 0.25s ease;
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.10);
}

.contact-item i {
    font-size: 2.2rem;
    color: var(--primary);
    margin-right: 18px;
}

.contact-item h5 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-item a {
    font-size: 1.05rem;
    font-weight: 500;
    color: #444;
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--primary);
}

/* ============================
   REVIEWS SLIDER SECTION
   ============================ */
#reviews-slider {
    background: var(--background);
    padding: 80px 0;
}

/* Overall Rating */
.overall-rating {
    text-align: center;
    margin-bottom: 50px;
}

.rating-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.rating-stars {
    font-size: 2rem;
    color: #ffc107;
    margin: 10px 0;
}

.rating-stars i {
    margin: 0 3px;
}

.rating-count {
    font-size: 1rem;
    color: #666;
    margin-top: 10px;
}

/* Swiper Container */
.reviewsSwiper {
    padding: 20px 0 60px;
    margin: 0 -15px;
}

.reviewsSwiper .swiper-slide {
    height: auto;
}

/* Review Card */
.review-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

/* Review Header */
.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 15px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.reviewer-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-photo-placeholder {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.reviewer-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 5px 0;
}

.review-stars {
    font-size: 0.9rem;
}

.review-stars i.filled {
    color: #ffc107;
}

.review-stars i.empty {
    color: #ddd;
}

.review-date {
    font-size: 0.85rem;
    color: #999;
    white-space: nowrap;
}

/* Review Text */
.review-text {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
    flex: 1;
}

/* Swiper Navigation */
.reviewsSwiper .swiper-button-next,
.reviewsSwiper .swiper-button-prev {
    color: var(--primary);
    background: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.reviewsSwiper .swiper-button-next:after,
.reviewsSwiper .swiper-button-prev:after {
    font-size: 20px;
    font-weight: 700;
}

.reviewsSwiper .swiper-button-next:hover,
.reviewsSwiper .swiper-button-prev:hover {
    background: var(--primary);
    color: white;
}

/* Swiper Pagination */
.reviewsSwiper .swiper-pagination-bullet {
    background: var(--primary);
    opacity: 0.3;
    width: 10px;
    height: 10px;
}

.reviewsSwiper .swiper-pagination-bullet-active {
    opacity: 1;
    width: 30px;
    border-radius: 5px;
}

/* Google Badge */
.google-badge-reviews {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
    font-size: 0.9rem;
    color: #666;
}

.google-badge-reviews img {
    height: 24px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .rating-number {
        font-size: 3rem;
    }

    .rating-stars {
        font-size: 1.5rem;
    }

    .review-card {
        padding: 20px;
    }

    .reviewer-photo,
    .reviewer-photo-placeholder {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .reviewer-name {
        font-size: 1rem;
    }

    .review-text {
        font-size: 0.9rem;
    }

    .reviewsSwiper .swiper-button-next,
    .reviewsSwiper .swiper-button-prev {
        width: 35px;
        height: 35px;
    }

    .reviewsSwiper .swiper-button-next:after,
    .reviewsSwiper .swiper-button-prev:after {
        font-size: 16px;
    }
}

/* ============================
   MAP SECTION
   ============================ */
.map-section {
    width: 100%;
    padding: 0;
    margin: 0;
    background: #f8f9fa;
}

.map-container {
    width: 100%;
    height: 500px;
    position: relative;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Mobile map adjustments */
@media(max-width: 768px) {
    .map-container {
        height: 400px;
    }
}

@media(max-width: 576px) {
    .map-container {
        height: 350px;
    }
}

/* ============================
   FOOTER
   ============================ */
.footer {
    background: linear-gradient(135deg, #e6e6e6, #bababa);
    color: white;
    padding: 60px 0 30px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    margin: 0 6px;
}

.footer-social {
    text-align: center;
    margin: 25px 0;
}

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

/* Text normalization */
body,
p,
a,
span,
li {
    font-size: 0.95rem;
    font-weight: 400 !important;
}