@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,600;1,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Alex+Brush&display=swap');

:root {
    --primary: #0d9488; /* Teal 600 */
    --primary-light: #5eead4; /* Teal 300 */
    --primary-dark: #0f766e; /* Teal 700 */
    --bg-light: #f0fdfa; /* Teal 50 */
    --text-dark: #0f172a;
    --text-muted: #475569;
    --white: #ffffff;
    --transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

html, body {
    overflow-x: hidden;
    width: 100%;
}
body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background-color: var(--white);
    backdrop-filter: blur(15px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    text-decoration: none;
}

.logo-img {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary);
    padding: 3px;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(13, 148, 136, 0.2);
}

.nav-brand:hover .logo-img {
    transform: rotate(15deg) scale(1.05);
}

.nav-brand span {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-dark);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links li a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition);
}

.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -2px;
    left: 0;
    background-color: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-links li a:hover {
    color: var(--primary);
}

.nav-links li a:hover::after {
    width: 100%;
}

/* Button */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.2rem 2.8rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.95rem;
    transition: var(--transition);
    box-shadow: 0 15px 30px -5px rgba(13, 148, 136, 0.4);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -5px rgba(13, 148, 136, 0.6);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    box-shadow: none;
}
.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 15px 30px -5px rgba(13, 148, 136, 0.4);
}

/* Banner / Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 120px 5% 50px;
    gap: 4rem;
    background: radial-gradient(circle at top left, var(--white) 0%, var(--bg-light) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
    opacity: 0.15;
    z-index: 0;
}

.hero-text {
    flex: 1;
    z-index: 1;
    max-width: 650px;
}

.hero-text h1 {
    font-size: 5.5rem;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero-text h1 span {
    color: var(--primary);
    position: relative;
    display: inline-block;
}
.hero-text h1 span::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 20px;
    background: rgba(94, 234, 212, 0.3);
    bottom: 5px;
    left: 0;
    z-index: -1;
}

.hero-text p {
    font-size: 1.35rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

/* Hero Collage */
.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    min-height: 550px;
    width: 100%;
}

.hero-collage {
    position: relative;
    width: 520px;
    height: 550px;
}

.hc-img {
    position: absolute;
    border-radius: 250px;
    object-fit: cover;
    box-shadow: 0 25px 50px rgba(0,0,0,0.12);
    transition: var(--transition);
    border: 8px solid var(--primary-light);
}

.hc-img-1 {
    width: 260px;
    height: 480px;
    top: 0;
    left: 20px;
    z-index: 2;
}

.hc-img-2 {
    width: 260px;
    height: 480px;
    top: 60px;
    left: 240px;
    z-index: 1;
}

.hero-collage:hover .hc-img-1 { transform: translateY(-15px) scale(1.02); z-index: 3; }
.hero-collage:hover .hc-img-2 { transform: translateY(-5px) scale(1.05); z-index: 4; }

/* Sections */
.section {
    padding: 8rem 5%;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title {
    font-size: 3.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-title span {
    color: var(--primary);
    font-style: italic;
}

.section-subtitle {
    color: var(--primary-dark);
    font-size: 1.15rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

/* About Section */
.about {
    display: flex;
    align-items: center;
    gap: 5rem;
    background-color: var(--white);
}

.about-images {
    flex: 1;
    position: relative;
    min-height: 550px;
    display: flex;
    justify-content: center;
}

.img-1, .img-2 {
    position: absolute;
    box-shadow: 0 25px 50px rgba(0,0,0,0.12);
    transition: var(--transition);
    object-fit: cover;
}

.img-1 {
    width: 50%;
    height: 480px;
    top: 0;
    left: 10%;
    z-index: 2;
    border-radius: 250px;
    border: 8px solid var(--primary-light);
}

.img-2 {
    width: 50%;
    height: 480px;
    top: 60px;
    left: 40%;
    z-index: 1;
    border-radius: 250px;
    border: 8px solid var(--primary-light);
}

.about-images:hover .img-1 { transform: translateY(-15px) scale(1.02); z-index: 3; }
.about-images:hover .img-2 { transform: translateY(-5px) scale(1.05); z-index: 4; }

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

/* My Offerings */
.services {
    background-color: #e2f8f5;
    position: relative;
}
.services::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100px;
    background: linear-gradient(to bottom, var(--white), transparent);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.service-card {
    position: relative;
    height: 480px;
    border-radius: 30px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    background: var(--white);
    transition: var(--transition);
}

.service-bg {
    width: 100%;
    height: 55%;
    object-fit: contain;
    background-color: var(--bg-light);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-20px);
    box-shadow: 0 40px 60px rgba(13, 148, 136, 0.2);
}

.service-card:hover .service-bg {
    transform: scale(1.08);
}

.service-info {
    padding: 2.5rem;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 55%;
    background: var(--white);
    border-radius: 30px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.service-card:hover .service-info {
    height: 60%;
    background: var(--primary);
}

.service-info h3 {
    color: var(--text-dark);
    font-size: 2rem;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.service-info p {
    color: var(--text-muted);
    font-size: 1.1rem;
    transition: var(--transition);
    opacity: 0.9;
}

.service-card:hover .service-info h3,
.service-card:hover .service-info p {
    color: var(--white);
}

.price-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(5px);
    color: var(--primary-dark);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    z-index: 5;
    transition: var(--transition);
}

.service-card:hover .price-tag {
    background: var(--primary-dark);
    color: var(--white);
}

/* Portfolio Tabs */
.portfolio {
    background-color: var(--white);
}

.tab-controls {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.tab-btn {
    padding: 1rem 2.5rem;
    background: var(--bg-light);
    border: none;
    color: var(--text-dark);
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.tab-btn.active, .tab-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(13, 148, 136, 0.3);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.portfolio-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/5;
    display: none; 
}

.portfolio-item.show {
    display: block;
    animation: scaleIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.9) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.portfolio-overlay {
    position: absolute;
    inset: 20px;
    border-radius: 10px;
    background: rgba(13, 148, 136, 0.85);
    backdrop-filter: blur(3px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.9);
    transition: var(--transition);
}

.portfolio-item:hover img { transform: scale(1.15); }
.portfolio-item:hover .portfolio-overlay { opacity: 1; transform: scale(1); }

.portfolio-overlay span {
    color: var(--white);
    font-size: 2rem;
    font-family: 'Playfair Display', serif;
}
.portfolio-overlay p {
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Booking System */
.booking {
    background: radial-gradient(circle at bottom right, #e2f8f5 0%, var(--white) 100%);
}

.booking-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    background: var(--white);
    padding: 4rem;
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

.booking-form {
    flex: 1.5;
    min-width: 300px;
}

.booking-form h3 {
    font-size: 3.5rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-control {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 15px;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    background: var(--bg-light);
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.1);
}

.booking-sidebar {
    flex: 1;
    min-width: 300px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 3rem;
    border-radius: 30px;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.booking-sidebar h4 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.booking-sidebar p, .booking-sidebar a {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    transition: var(--transition);
}

.booking-sidebar a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.booking-sidebar i {
    font-size: 1.5rem;
    color: var(--primary-light);
}

/* Footer */
footer {
    background-color: var(--text-dark);
    color: rgba(255,255,255,0.7);
    padding: 5rem 5% 2rem;
    font-family: 'Outfit', sans-serif;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-col p {
    line-height: 1.8;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.2rem;
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-collage { width: 450px; height: 480px; }
    .hc-img-1 { width: 220px; height: 400px; left: 15px; top: 0; }
    .hc-img-2 { width: 220px; height: 400px; left: 210px; top: 50px; }
}

@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 150px;
    }
    .hero-text h1 { font-size: 4rem; }
    .hero-visual { display: none; }
    .about { flex-direction: column; }
    .about-images { width: 100%; min-height: 450px; }
}

@media (max-width: 768px) {
    .hero-text h1 { font-size: 2.8rem; }
    .hero-visual { display: none; }
}

@media (max-width: 600px) {
    .hero { padding: 120px 4% 40px; gap: 2rem; }
    .hero-text h1 { font-size: 2.2rem; line-height: 1.1; }
    .hero-text p { font-size: 1rem; }
    .hero-visual { display: none; }
}

@media (max-width: 480px) {
    .hero { padding: 120px 3% 30px; gap: 1.5rem; flex-direction: column; }
    .hero-text h1 { font-size: 1.8rem; text-align: center; }
    .hero-text p { font-size: 0.95rem; text-align: center; }
    .hero-text { max-width: 100%; }
    .hero-visual { display: none; }
}

@media (max-width: 380px) {
    .hero-text h1 { font-size: 1.6rem; }
    .hero-text p { font-size: 0.9rem; }
    .hero-visual { display: none; }
}

/* Quote Section */
.quote-section {
    background-color: var(--text-dark);
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 4rem;
    padding: 8rem 5%;
}

.quote-image {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    height: 500px;
}

.quote-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.quote-image:hover img {
    transform: scale(1.05);
}

.quote-text {
    flex: 1.2;
}

.quote-icon {
    font-size: 5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    opacity: 0.8;
}

.quote-text h2 {
    font-size: 3rem;
    line-height: 1.4;
    font-weight: 300;
    margin-bottom: 2rem;
    color: var(--white);
}

/* Process Section */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.process-step {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(0,0,0,0.03);
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(13, 148, 136, 0.15);
    border-color: var(--primary-light);
}

.step-number {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    box-shadow: 0 10px 20px rgba(13, 148, 136, 0.3);
}

.process-step h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin: 1.5rem 0 1rem;
}

.process-step p {
    color: var(--text-muted);
}

/* Philosophy Section */
.philosophy {
    background: url('https://images.unsplash.com/photo-1469334031218-e382a71b716b?q=80&w=1920&auto=format&fit=crop') center/cover fixed;
    position: relative;
    color: var(--white);
    text-align: center;
    padding: 10rem 5%;
}

.philosophy::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(15, 23, 42, 0.75);
}

.philosophy-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.philosophy-content h2 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    color: var(--white);
}

.philosophy-content p {
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
}

@media (max-width: 1024px) {
    .quote-section {
        flex-direction: column;
    }
    .quote-image {
        width: 100%;
        height: 350px;
    }

    .philosophy-content h2 {
        font-size: 2.5rem;
    }
}

/* Eyebrow Class (Script font) */
.eyebrow {
    font-family: 'Alex Brush', cursive;
    font-size: 3.5rem;
    color: var(--primary);
    line-height: 1;
    display: block;
    margin-bottom: 0.5rem;
    text-transform: none;
    letter-spacing: normal;
    font-weight: 400;
}

/* Page Header with Spinning Circles */
.page-header {
    position: relative;
    padding: 160px 2rem 80px;
    background-color: var(--bg-light);
    overflow: hidden;
    text-align: center;
}
.page-header > * {
    position: relative;
    z-index: 2;
}
.page-header::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    right: 5%;
    top: 15%;
    border-radius: 50%;
    border: 1px solid rgba(15, 23, 42, 0.2); /* Dark visible border */
    background: radial-gradient(circle at center, rgba(15, 23, 42, 0.08) 0%, transparent 70%);
    animation: slow-spin 25s linear infinite;
    border-right-color: rgba(15, 23, 42, 0.6); /* Deep dark visible arc */
    z-index: 1;
}
.page-header::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    left: 8%;
    bottom: 20%;
    border-radius: 50%;
    border: 1px solid rgba(15, 23, 42, 0.25);
    background: radial-gradient(circle at center, rgba(15, 23, 42, 0.1) 0%, transparent 60%);
    animation: slow-spin-reverse 20s linear infinite;
    border-left-color: rgba(15, 23, 42, 0.5);
    z-index: 1;
}
@keyframes slow-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
@keyframes slow-spin-reverse {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(-360deg); }
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    z-index: 1001;
}
.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
    border-radius: 3px;
}
.menu-toggle.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}
.menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Fully Responsive for Every Screen */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    .nav-links {
        position: fixed;
        right: 0;
        top: 80px;
        transform: translateX(100%);
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        max-width: 300px;
        height: calc(100vh - 80px);
        align-items: center;
        padding-top: 2rem;
        transition: transform 0.3s ease;
        box-shadow: -5px 0 15px rgba(0,0,0,0.05);
        border-left: 1px solid rgba(0,0,0,0.05);
        z-index: 999;
    }
    .nav-links.active {
        transform: translateX(0);
    }
    .hero-text h1 {
        font-size: 3rem;
    }
    .nav-brand span {
        font-size: 1.5rem;
    }
    .logo-img {
        width: 50px;
        height: 50px;
    }
    .hero-collage {
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-top: 2rem;
    }
    .hc-img-1, .hc-img-2, .hc-img-3 {
        position: relative;
        width: 100%;
        height: auto;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
        border-radius: 20px;
    }
    .eyebrow {
        font-size: 2.5rem;
    }
    .section-title {
        font-size: 2.5rem;
    }
    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 0.5rem;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .quote-section {
        padding: 4rem 1rem;
    }
    .quote-text h2 {
        font-size: 2rem;
    }
    .page-header {
        padding: 120px 1rem 60px;
    }
    .page-header::before {
        width: 150px;
        height: 150px;
        right: -20px;
    }
    .page-header::after {
        width: 100px;
        height: 100px;
        left: -10px;
    }
    .tab-controls {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
}

