:root {
    /* YOUR ORIGINAL COLORS */
    --color-blue: #39a4b2;      
    --color-gold: #cba90a;      
    --color-text: #2c2c2c;
    --color-text-light: #666666;
    --color-white: #ffffff;
    --color-bg-light: #f9f9f9;
    --color-footer: #267a85;
    
    /* Layout Defaults */
    --container-width: 1280px;
    /* INCREASED BORDER RADIUS TO MATCH PDF */
    --border-radius-card: 20px; 
    --border-radius-btn: 6px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Lato', sans-serif;
    color: var(--color-text);
    line-height: 1.6;
    background-color: var(--color-white);
}

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* --- BUTTONS --- */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    border-radius: var(--border-radius-btn);
    text-align: center;
}

.btn-primary { background-color: var(--color-blue); color: var(--color-white); }
.btn-primary:hover { background-color: #2e8a96; }

.btn-secondary { background-color: transparent; border: 2px solid var(--color-white); color: var(--color-white); }
.btn-secondary:hover { background-color: var(--color-white); color: var(--color-text); }

.btn-outline-dark { background-color: #f5f5f5; border: 1px solid #ddd; color: var(--color-text); }
.btn-outline-dark:hover { background-color: #e0e0e0; }

.btn-text {
    color: var(--color-white);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    margin-top: auto;
}
.btn-text i { font-size: 0.8rem; transition: transform 0.3s; }
.btn-text:hover i { transform: translateX(5px); }

/* Arrow link for white backgrounds */
.link-arrow { color: var(--color-text); font-weight: 700; display: flex; align-items: center; gap: 8px; font-size: 0.95rem; }
.link-arrow i { font-size: 0.8rem; transition: transform 0.3s; }
.link-arrow:hover i { transform: translateX(5px); }


/* --- TYPOGRAPHY UTILS --- */
.section-header { text-align: center; margin-bottom: 4rem; max-width: 800px; margin-left: auto; margin-right: auto; }
.section-header h2 { font-size: 2.8rem; margin-bottom: 1rem; }
.section-header p { font-size: 1.1rem; color: inherit; opacity: 0.9; }

.sub-label { 
    display: block; 
    text-transform: uppercase; 
    font-size: 0.75rem; 
    letter-spacing: 2px; 
    margin-bottom: 1rem; 
    font-weight: 700;
    color: var(--color-white);
    opacity: 0.9;
}
.sub-label-dark { color: var(--color-text-light); }

/* --- HEADER --- */
header { padding: 1.5rem 0; background: var(--color-white); position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 15px rgba(0,0,0,0.05); }
.nav-wrapper { display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; font-style: italic; color: var(--color-text); }
.main-nav ul { display: flex; gap: 2.5rem; }
.main-nav a { font-size: 0.95rem; font-weight: 500; color: var(--color-text); }
.main-nav a:hover { color: var(--color-blue); }
.nav-btn { background-color: var(--color-blue); color: white; padding: 12px 28px; font-weight: 700; border-radius: var(--border-radius-btn); font-size: 0.9rem; }
.nav-btn:hover { background-color: #2e8a96; }

/* --- HERO --- */
.hero {
    position: relative;
    height: 80vh;
    min-height: 600px;
    background-image: linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.35)), url('https://picsum.photos/1920/1080?random=1');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-white);
}
.hero-content { max-width: 900px; padding: 0 20px; }
.hero h1 { font-size: 4rem; line-height: 1.1; margin-bottom: 1.5rem; }
.hero p { font-size: 1.25rem; margin-bottom: 2.5rem; max-width: 700px; margin-left: auto; margin-right: auto; font-weight: 400; }
.hero-buttons { display: flex; gap: 1rem; justify-content: center; }

/* --- INTRO / SERVICES SECTION --- */
.intro-section { background-color: var(--color-blue); color: var(--color-white); padding: 7rem 0; }
.intro-header .sub-label { color: rgba(255,255,255,0.8); }

.intro-grid { 
    display: grid; 
    /* CHANGE: First column is larger (1.5fr) to match PDF width */
    grid-template-columns: 1.5fr 1fr 1fr; 
    gap: 2rem; 
    margin-top: 3rem; 
    align-items: stretch;
}

.card-service {
    background-color: rgba(255, 255, 255, 0.15); 
    border-radius: var(--border-radius-card);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s;
    height: 100%;
    border: 1px solid rgba(255,255,255,0.1);
}
.card-service:hover { transform: translateY(-5px); }

.card-content { padding: 2.5rem; flex: 1; display: flex; flex-direction: column; align-items: flex-start; }
.card-service h3 { font-size: 1.8rem; margin-bottom: 1rem; line-height: 1.2; }
.card-service p { font-size: 1.05rem; opacity: 0.9; margin-bottom: 1.5rem; line-height: 1.6; }

.card-img-bottom { height: 250px; width: 100%; object-fit: cover; display: block; }

/* SPECIAL LAYOUT CARD 1 (Left): Text Left / Image Right */
.card-service-side {
    flex-direction: row; 
}
.card-service-side .card-content {
    width: 50%; /* Text area */
    padding-right: 1.5rem;
    justify-content: center;
}
.card-service-side .card-img-side {
    width: 50%; /* Image area */
    height: auto; 
    object-fit: cover;
    min-height: 100%;
}

/* --- ABOUT SECTION --- */
.about-section { padding: 7rem 0; background: var(--color-white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }

.about-content h2 { font-size: 3rem; color: var(--color-text); margin-bottom: 2rem; }
.about-list { margin: 2rem 0; }

.about-item { display: flex; gap: 1.5rem; margin-bottom: 2.5rem; }
.about-icon { font-size: 1.8rem; color: var(--color-text); padding-top: 5px; min-width: 35px; } 
.about-item h4 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.about-item p { font-size: 1rem; color: var(--color-text-light); }

/* CHANGE: Image is smaller/boxier, not full height */
.about-img-container { 
    width: 100%; 
    aspect-ratio: 1/1; /* Makes it more square/box like PDF */
    max-height: 600px; 
    border-radius: var(--border-radius-card); 
    overflow: hidden; 
    position: relative;
}
.about-img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }

.about-actions { display: flex; align-items: center; gap: 25px; margin-top: 3rem; }

/* --- PROCESS SECTION --- */
.process-section { background-color: var(--color-blue); color: var(--color-white); padding: 7rem 0; }

.process-grid { 
    display: grid; 
    grid-template-columns: 1fr 1.4fr; /* Right side slightly wider */
    gap: 2rem; 
    margin-top: 4rem; 
}

/* Left Column: Two Stacked Cards */
.process-col-left { display: flex; flex-direction: column; gap: 2rem; }

.process-card {
    background-color: rgba(255, 255, 255, 0.15);
    /* CHANGE: Reduced padding so they aren't huge */
    padding: 2.5rem;
    border-radius: var(--border-radius-card);
    flex: 1; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.1);
}
.process-icon { font-size: 2.2rem; margin-bottom: 1rem; display: block; opacity: 0.9; } 
.process-card h3 { font-size: 1.6rem; margin-bottom: 0.8rem; }
.process-card p { font-size: 1rem; opacity: 0.9; margin-bottom: 1.5rem; }

/* Right Column: One Tall Card (Split Layout) */
/* CHANGE: Flex row to put image on RIGHT side */
.process-card-tall {
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: var(--border-radius-card);
    display: flex;
    flex-direction: row; /* Horizontal split */
    height: 100%; 
    border: 1px solid rgba(255,255,255,0.1);
    overflow: hidden;
}
.process-card-tall .card-content {
    width: 50%;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
/* Image fills the right half */
.process-img-side {
    width: 50%;
    height: 100%;
    object-fit: cover;
}

/* --- GALLERY SECTION --- */
.gallery-section { padding: 6rem 0; background-color: var(--color-white); }
.gallery-header { margin-bottom: 3rem; }
.gallery-header h2 { font-size: 2.5rem; margin-bottom: 0.5rem; }

.gallery-img { width: 100%; height: 350px; object-fit: cover; border-radius: var(--border-radius-card); }

.swiper { width: 100%; padding-bottom: 60px; }
.swiper-wrapper { margin-bottom: 2rem; }

.gallery-controls-container { display: flex; justify-content: flex-end; align-items: center; gap: 15px; }
.custom-prev, .custom-next { 
    width: 50px; height: 50px; 
    background-color: #f0f0f0; 
    border-radius: 6px; 
    display: flex; align-items: center; justify-content: center; 
    cursor: pointer; transition: 0.3s; 
    color: var(--color-text); 
}
.custom-prev:hover, .custom-next:hover { background-color: #e0e0e0; }

/* --- TESTIMONIALS --- */
.reviews-section { background-color: var(--color-bg-light); padding: 7rem 0; text-align: center; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 4rem; }

.review-card { 
    background-color: var(--color-white); 
    padding: 3rem 2.5rem; 
    border-radius: var(--border-radius-card); 
    text-align: left; 
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}
.stars { color: var(--color-gold); margin-bottom: 1.2rem; font-size: 0.9rem; letter-spacing: 2px; }
.review-text { font-size: 1.1rem; margin-bottom: 2rem; font-style: italic; color: var(--color-text); line-height: 1.6; }
.reviewer { display: flex; align-items: center; gap: 1rem; }
.reviewer img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }
.reviewer-info h5 { margin-bottom: 0; font-size: 1rem; font-weight: 700; }
.reviewer-info span { font-size: 0.85rem; color: var(--color-text-light); }

/* --- CONTACT --- */
.contact-section { padding: 6rem 0; text-align: center; background-color: var(--color-white); }
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; margin-top: 4rem; }
.contact-item { display: flex; flex-direction: column; align-items: center; }
.contact-icon { font-size: 2.5rem; margin-bottom: 1.5rem; color: var(--color-text); }
.contact-item h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.contact-item p { color: var(--color-text-light); margin-bottom: 0.5rem; max-width: 250px; }
.contact-link { font-weight: 700; text-decoration: underline; color: var(--color-text); margin-top: 5px; }

/* --- FOOTER --- */
footer { background-color: var(--color-footer); color: var(--color-white); padding: 5rem 0 2rem 0; font-size: 0.9rem; }

.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 4rem; }

.footer-col h4 { font-family: 'Lato', sans-serif; font-size: 1rem; margin-bottom: 1.5rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.footer-col ul li { margin-bottom: 0.8rem; }
.footer-col a { opacity: 0.8; font-weight: 300; }
.footer-col a:hover { opacity: 1; text-decoration: underline; }

.logo-footer { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 700; font-style: italic; display: block; margin-bottom: 1rem; }

.footer-bottom { 
    border-top: 1px solid rgba(255,255,255,0.2); 
    padding-top: 2rem; 
    display: flex; 
    justify-content: space-between; 
    align-items: center;
    opacity: 0.8; font-size: 0.8rem; 
}
.footer-links { display: flex; gap: 1.5rem; }
.social-links { display: flex; gap: 1rem; font-size: 1.2rem; }

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
    .hero h1 { font-size: 2.5rem; }
    .intro-grid, .about-grid, .process-grid, .reviews-grid, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
    
    /* Reset Layouts for Mobile */
    .card-service-side { flex-direction: column; } 
    .card-service-side .card-content { width: 100%; padding: 2rem; }
    .card-service-side .card-img-side { width: 100%; height: 250px; }
    
    .process-card-tall { flex-direction: column-reverse; }
    .process-card-tall .card-content { width: 100%; }
    .process-img-side { width: 100%; height: 250px; }
    
    .about-img-container { order: -1; aspect-ratio: auto; height: 350px; }
    
    .footer-bottom { flex-direction: column; gap: 1.5rem; text-align: center; }
    .footer-links { flex-direction: column; gap: 0.5rem; }
}/* Slider Styling to match PDF */
        .gallery-section {
            padding: 4rem 0;
            overflow: hidden;
        }

        .gallery-header {
            margin-bottom: 2rem;
        }

        .gallery-img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            border-radius: 12px; /* Rounded corners like PDF */
        }

        /* Container for the controls below the slider */
        .gallery-controls-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 1.5rem;
            padding-right: 1rem; /* Alignment tweak */
        }

        /* Custom Navigation Buttons (Square, Light Gray) */
        .gallery-nav-buttons {
            display: flex;
            gap: 10px;
        }

        .custom-prev, .custom-next {
            width: 45px;
            height: 45px;
            background-color: #f0f0f0; /* Light gray background */
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background 0.3s;
            color: #333;
            font-size: 1.2rem;
        }

        .custom-prev:hover, .custom-next:hover {
            background-color: #e0e0e0;
        }

        /* Swiper Pagination (Dots) */
        .swiper-pagination-custom {
            position: relative;
            width: auto !important;
            text-align: left;
            bottom: 0 !important;
        }

        .swiper-pagination-bullet {
            width: 8px;
            height: 8px;
            background: #ccc;
            opacity: 1;
            margin: 0 4px !important;
        }

        .swiper-pagination-bullet-active {
            background: var(--color-gold, #c5a47e); /* Fallback color if var not set */
        }

        /* Icon sizing tweaks to match brochure feel */
        .about-icon i { font-size: 1.8rem; }
        .process-icon { font-size: 2rem; margin-bottom: 1rem; display: block; color: white; }
        .contact-icon { font-size: 1.8rem; margin-bottom: 1rem; display: block; }