/* --- Base & Reset --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

:root {
    --primary: #EF4444; /* Light Red / Coral */
    --primary-hover: #DC2626; 
    --dark: #0F172A; 
    --text-gray: #475569;
    --light-bg: #F8FAFC;
    --process-bg: #F0F4F8; 
    --yellow-pill: #FDE047; 
    --white: #ffffff;
    --border: #CBD5E1;
}

body { 
    font-family: 'Inter', sans-serif; 
    color: var(--text-gray); 
    background-color: var(--white); 
    line-height: 1.6; 
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
h1, h2, h3, h4 { font-weight: 800; color: var(--dark); letter-spacing: -0.5px; }

/* Global Image Styles */
img { width: 100%; height: 100%; border-radius: 12px; display: block; object-fit: cover; }

/* Layout Utilities */
.container { max-width: 1600px; margin: 0 auto; padding: 0 4%; } 
.section-padding { padding: 7rem 0; } 
.bg-gray { background-color: var(--light-bg); }

/* Eyebrow Text */
.eyebrow {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.section-header { margin-bottom: 4rem; text-align: center; }
.section-header h2 { font-size: 3rem; margin-bottom: 1rem; }
.section-header p { max-width: 600px; margin: 0 auto; font-size: 1.15rem; color: var(--text-gray); }

/* Buttons */
.btn { 
    display: inline-flex; 
    align-items: center;
    justify-content: center;
    padding: 1.1rem 2.5rem; 
    background-color: var(--primary); 
    color: var(--white); 
    font-size: 1.05rem; 
    font-weight: 600; 
    border-radius: 50px; 
    transition: all 0.3s ease; 
    border: 2px solid var(--primary); 
    cursor: pointer;
}
.btn:hover { background-color: var(--primary-hover); border-color: var(--primary-hover); color: var(--white); }

.btn-outline { background-color: transparent; color: var(--white); border-color: var(--white); }
.btn-outline:hover { background-color: var(--white); color: var(--dark); }

/* --- Header / Navigation --- */
header { 
    background: var(--white); 
    padding: 1rem 5%; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    position: sticky; 
    top: 0; 
    z-index: 1000; 
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.logo { display: inline-block; }
.logo img { height: 75px; width: auto; border-radius: 0; object-fit: contain; }

nav ul { list-style: none; display: flex; gap: 2.5rem; align-items: center; }
nav ul li a { font-size: 1rem; font-weight: 600; color: var(--dark); transition: color 0.2s; }
nav ul li a:hover { color: var(--primary); }

/* --- Hero Section --- */
.hero { 
    background-color: var(--primary); 
    color: var(--white); 
    padding: 6rem 5%;
    position: relative;
    overflow: hidden;
}
.hero-container { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.hero-content { max-width: 650px; }
.hero h1 { font-size: 4.5rem; margin-bottom: 2.5rem; line-height: 1.1; color: var(--white); }
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-eyebrow { color: rgba(255,255,255,0.9); }

.hero-btn-primary { background-color: var(--dark); border-color: var(--dark); color: var(--white); }
.hero-btn-primary:hover { background-color: var(--white); border-color: var(--white); color: var(--dark); }
.hero .btn-outline:hover { background-color: var(--white); color: var(--primary); }

/* Carousels & Layouts */
.hero-image-wrapper {
    position: relative; height: 500px; border-radius: 16px; overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2); border: 4px solid rgba(255,255,255,0.1);
}

.galleries-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 4rem;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}

.gallery-column {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gallery-title {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
    text-align: center;
}

.gallery-carousel-wrapper {
    position: relative; 
    width: 100%; 
    max-width: 450px; 
    aspect-ratio: 9 / 16; 
    height: auto; 
    border-radius: 16px; 
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1); 
}

.carousel-track { display: flex; height: 100%; transition: transform 0.5s ease-in-out; }
.carousel-slide { min-width: 100%; height: 100%; object-fit: cover; border-radius: 0; }
.carousel-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.4); color: var(--white); border: none;
    width: 40px; height: 40px; border-radius: 50%; font-size: 1.2rem;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    z-index: 10; transition: background 0.3s ease;
}
.carousel-arrow:hover { background: var(--dark); }
.arrow-left { left: 10px; }
.arrow-right { right: 10px; }

/* --- Process Strip --- */
.process-strip {
    background-color: var(--process-bg); padding: 5rem 5%;
    display: flex; justify-content: center; align-items: flex-start; gap: 2rem;
    border-bottom: 1px solid var(--border);
}
.process-step { display: flex; flex-direction: column; align-items: center; text-align: center; max-width: 260px; }
.process-icon-wrapper { position: relative; width: 100px; height: 60px; display: flex; justify-content: center; align-items: center; margin-bottom: 1.5rem; }
.process-pill { position: absolute; bottom: 5px; width: 80px; height: 35px; background-color: var(--yellow-pill); border-radius: 40px; z-index: 1; }
.process-icon { position: relative; z-index: 2; width: 40px; height: 40px; color: var(--dark); }
.process-title { font-size: 1.3rem; margin-bottom: 0.8rem; }
.process-desc { font-size: 0.95rem; color: var(--text-gray); line-height: 1.5; }
.process-arrow {
    width: 70px; height: 30px; margin-top: 15px; 
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 30' fill='none' stroke='%23CBD5E1' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 15 Q 50 5, 95 15 M 80 5 L 95 15 L 80 25'/%3E%3C/svg%3E");
    background-position: center; background-repeat: no-repeat; background-size: contain;
}

/* --- WIDENED 3-COLUMN COMBINED SECTION --- */
.combined-layout {
    display: grid; grid-template-columns: 1.1fr 1fr 1.3fr; gap: 4rem; align-items: center; 
}

.about-column { display: flex; flex-direction: column; justify-content: center; }
.about-column h2 { font-size: 3rem; line-height: 1.15; margin-bottom: 1.5rem; }
.about-column p { margin-bottom: 1.25rem; font-size: 1.15rem; color: var(--text-gray); }
.check-list { list-style: none; margin: 1.5rem 0 2.5rem 0; }
.check-list li { 
    position: relative; padding-left: 2.5rem; margin-bottom: 1.25rem; 
    font-weight: 500; font-size: 1.1rem; color: var(--dark); 
}
.check-list li::before { 
    content: '✓'; position: absolute; left: 0; top: 2px;
    color: var(--white); background: var(--primary);
    width: 24px; height: 24px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-size: 0.8rem;
}

.middle-image-column { border-radius: 16px; overflow: hidden; box-shadow: 0 15px 35px rgba(0,0,0,0.1); }
.middle-image-column img { width: 100%; height: auto; max-height: 650px; object-fit: cover; display: block; }

.offer-column { display: flex; flex-direction: column; justify-content: center; }
.offer-column h2 { font-size: 3rem; line-height: 1.15; margin-bottom: 1rem; }
.offer-column p { font-size: 1.15rem; color: var(--text-gray); margin-bottom: 2rem; }

.compact-offer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }

.offer-card {
    background: var(--primary); color: var(--white); border-radius: 16px;
    padding: 2rem 1.5rem; display: flex; flex-direction: column; align-items: center;
    text-align: center; gap: 1rem; box-shadow: 0 8px 20px rgba(239, 68, 68, 0.15); 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.offer-card:hover {
    transform: translateY(-6px); background: var(--primary-hover); 
    box-shadow: 0 15px 30px rgba(239, 68, 68, 0.25); 
}
.offer-icon {
    background: rgba(255, 255, 255, 0.2); width: 55px; height: 55px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%; color: var(--white); 
}
.offer-card h3 { font-size: 1.2rem; margin: 0; color: var(--white); font-weight: 700; }

.compact-offer-grid .offer-card:nth-child(3) {
    grid-column: span 2; flex-direction: row; text-align: left;
    padding: 1.5rem 2.5rem; justify-content: center;
}
.compact-offer-grid .offer-card:nth-child(3) .offer-icon { margin-right: 1rem; }

/* --- Who I Am / Deep Dive Section --- */
.who-i-am-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.who-text h2 { font-size: 2.8rem; line-height: 1.15; margin-bottom: 1.5rem; }
.who-text p { margin-bottom: 1.25rem; font-size: 1.1rem; color: var(--text-gray); line-height: 1.7; }
.who-image { border-radius: 16px; overflow: hidden; box-shadow: 0 15px 35px rgba(0,0,0,0.1); }

/* --- Reviews --- */
.featured-review-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: stretch;
}
.featured-review-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.featured-review-images img {
    width: 100%;
    aspect-ratio: 9/16;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2.5rem; }
.review-card { background: var(--white); padding: 3rem; border-radius: 16px; border: 1px solid var(--border); box-shadow: 0 4px 10px rgba(0,0,0,0.02); }
.stars { color: #F59E0B; margin-bottom: 1rem; letter-spacing: 2px; font-size: 1.2rem; }
.review-card p { font-size: 1.05rem; color: var(--text-gray); font-style: italic; margin-bottom: 1.5rem; }
.reviewer { display: flex; align-items: center; border-top: 1px solid var(--border); padding-top: 1.5rem; }
.avatar { width: 50px; height: 50px; background: var(--primary); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; margin-right: 1rem; font-size: 1.1rem; overflow: hidden; }

/* --- FAQ Section --- */
.faq-section { display: grid; grid-template-columns: 1fr 1.5fr; gap: 5rem; align-items: start; }
.faq-text h2 { font-size: 2.8rem; margin-bottom: 1rem; }
.faq-text p { color: var(--text-gray); margin-bottom: 2.5rem; font-size: 1.15rem; }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: 12px; margin-bottom: 1rem; overflow: hidden; box-shadow: 0 2px 5px rgba(0,0,0,0.02); transition: all 0.3s ease; }
.faq-item:hover { border-color: var(--primary); }
.faq-item summary { padding: 1.5rem 2rem; font-weight: 700; color: var(--dark); cursor: pointer; list-style: none; font-size: 1.15rem; display: flex; justify-content: space-between; align-items: center; }
.faq-item summary::-webkit-details-marker { display: none; } 
.faq-item summary::after { content: '+'; color: var(--primary); font-size: 1.8rem; font-weight: 400; transition: transform 0.3s; }
.faq-item[open] summary::after { content: '−'; } 
.faq-item .faq-answer { padding: 0 2rem 2rem 2rem; color: var(--text-gray); font-size: 1.05rem; border-top: 1px solid transparent; line-height: 1.6; }
.faq-item[open] .faq-answer { border-top-color: var(--border); padding-top: 1.5rem; }

/* --- Footer CTA & New Advanced Footer --- */
.footer-cta { background: var(--dark); color: var(--white); text-align: center; padding: 7rem 5%; border-radius: 24px; margin: 4rem 5%; box-shadow: 0 20px 40px rgba(0,0,0,0.15); }
.footer-cta h2 { color: var(--white); font-size: 3.5rem; margin-bottom: 1.5rem; }

footer { padding: 4rem 5% 2rem 5%; border-top: 1px solid var(--border); background: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem; text-align: left; }
.footer-col h4 { font-size: 1.2rem; margin-bottom: 1.5rem; color: var(--dark); }
.footer-col p, .footer-col a { color: var(--text-gray); font-size: 0.95rem; margin-bottom: 0.8rem; display: block; transition: color 0.3s ease; }
.footer-col a:hover { color: var(--primary); }
.footer-bottom { margin-top: 4rem; padding-top: 2rem; border-top: 1px solid var(--border); text-align: center; color: var(--text-gray); font-size: 0.9rem; }
.footer-bottom a { color: var(--primary); font-weight: 600; text-decoration: none; transition: color 0.2s; }
.footer-bottom a:hover { text-decoration: underline; }

/* ========================================================
   SCROLL ANIMATIONS
   ======================================================== */
.animate-on-scroll { opacity: 0; visibility: hidden; }
.is-visible.fade-up { animation: fadeUpAnim 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; visibility: visible; }
.is-visible.slide-left { animation: slideLeftAnim 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; visibility: visible; }
.is-visible.slide-right { animation: slideRightAnim 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; visibility: visible; }

.delay-100 { animation-delay: 100ms; }
.delay-200 { animation-delay: 200ms; }
.delay-300 { animation-delay: 300ms; }
.delay-400 { animation-delay: 400ms; }

@keyframes fadeUpAnim { 0% { opacity: 0; transform: translateY(40px); } 100% { opacity: 1; transform: translateY(0); } }
@keyframes slideLeftAnim { 0% { opacity: 0; transform: translateX(-50px); } 100% { opacity: 1; transform: translateX(0); } }
@keyframes slideRightAnim { 0% { opacity: 0; transform: translateX(50px); } 100% { opacity: 1; transform: translateX(0); } }

/* ========================================================
   RESPONSIVE DESIGN
   ======================================================== */
@media (max-width: 1200px) {
    .combined-layout, .who-i-am-layout, .featured-review-layout { grid-template-columns: 1fr; gap: 4rem; }
    .middle-image-column { margin: 0 auto; max-width: 600px; }
    .hero-container, .faq-section { grid-template-columns: 1fr; gap: 3rem; }
    .hero-content { text-align: center; margin: 0 auto; }
    .hero-buttons { justify-content: center; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    nav ul { display: none; }
}

@media (max-width: 768px) {
    .section-padding { padding: 4rem 0; }
    
    /* --- MOBILE HEADER FIXES --- */
    header { padding: 0.8rem 4%; }
    .logo img { height: 45px; } 
    header .btn { padding: 0.6rem 1.2rem; font-size: 0.85rem; width: auto; } 
    
    /* Typography Scales */
    .hero h1 { font-size: 2.2rem; margin-bottom: 1.5rem; }
    .section-header h2, .about-column h2, .offer-column h2, .faq-text h2, .who-text h2 { font-size: 2rem; margin-bottom: 0.75rem; line-height: 1.2; }
    p, .about-column p, .offer-column p, .faq-text p, .faq-item .faq-answer, .who-text p { font-size: 0.95rem; }
    
    .hero-buttons .btn { width: 100%; } 
    .footer-cta .btn { width: 100%; margin-bottom: 0.5rem; }

    /* Scale Down Images */
    .hero-image-wrapper { height: 220px; }
    .gallery-carousel-wrapper { width: 100%; max-width: 400px; height: auto; aspect-ratio: 9/16; }
    .middle-image-column { height: 300px; }
    .galleries-layout { grid-template-columns: 1fr; } /* Stack carousels on mobile */

    /* Process Strip */
    .process-strip { flex-direction: row; padding: 2.5rem 2%; gap: 0.5rem; align-items: flex-start; justify-content: space-between; }
    .process-step { max-width: 30%; }
    .process-icon-wrapper { width: 60px; height: 40px; margin-bottom: 0.5rem; }
    .process-pill { width: 45px; height: 20px; }
    .process-icon { width: 24px; height: 24px; }
    .process-title { font-size: 0.85rem; margin-bottom: 0.3rem; }
    .process-desc { font-size: 0.7rem; line-height: 1.3; }
    .process-arrow { width: 20px; height: 15px; margin-top: 15px; transform: none; margin-bottom: 0; }

    /* Services Grid */
    .compact-offer-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
    .offer-card { padding: 1rem 0.5rem; gap: 0.5rem; border-radius: 12px; }
    .offer-icon { width: 40px; height: 40px; }
    .offer-icon svg { width: 20px; height: 20px; }
    .offer-card h3 { font-size: 0.85rem; }
    .compact-offer-grid .offer-card:nth-child(3) { flex-direction: row; padding: 1rem; text-align: left; }
    .compact-offer-grid .offer-card:nth-child(3) .offer-icon { margin-bottom: 0; margin-right: 0.5rem; width: 35px; height: 35px; }

    /* Adjust Lists & Reviews */
    .check-list li { font-size: 0.95rem; margin-bottom: 0.75rem; padding-left: 2rem; }
    .check-list li::before { width: 18px; height: 18px; font-size: 0.6rem; top: 1px; }
    .review-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .review-card { padding: 1.5rem; }
    
    .featured-review-images { grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }

    /* FAQ */
    .faq-item summary { font-size: 1rem; padding: 1rem 1.25rem; }
    .faq-item .faq-answer { padding: 0 1.25rem 1.25rem 1.25rem; }
    
    /* --- MOBILE FOOTER FIXES --- */
    .footer-cta { padding: 2.5rem 1.5rem; margin: 2rem 4%; border-radius: 16px; }
    .footer-cta h2 { font-size: 2.2rem; }
    .footer-cta p { font-size: 1rem; margin-bottom: 2rem; }
    
    footer { padding: 3rem 4% 1.5rem 4%; }
    .footer-grid { grid-template-columns: 1fr; text-align: left; gap: 2.5rem; }
    .footer-col h4 { margin-bottom: 1rem; }
}

/* ========================================================
   GALLERY PAGE STYLES
   ======================================================== */
.page-header {
    padding: 8rem 0 4rem;
    text-align: center;
    background-color: var(--light-bg);
}
.gallery-category {
    margin-bottom: 4rem;
}
.gallery-category h2 {
    margin-bottom: 2rem;
    text-align: center;
    font-size: 2.5rem;
}
.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    padding: 0 1rem;
}
.image-grid img {
    width: 100%;
    aspect-ratio: 9 / 16;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}
.image-grid img:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}