:root {
    --primary: #1e5f74;
    --primary-dark: #133e4c;
    --primary-light: #448ba0;
    --secondary: #7c5c93;
    --accent: #da9100;
    --text-dark: #2d2d2d;
    --text-light: #5e5e5e;
    --bg-light: #fdfbfb;
    --white: #ffffff;
    --gray-light: #f4f4f4;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --hand-drawn: 'Pacifico', cursive;
}

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

html {
    scroll-behavior: smooth;
}

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

h1,
h2,
h3,
h4,
.logo {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.label {
    display: inline-block;
    color: var(--secondary);
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

p.section-desc {
    max-width: 700px;
    margin: 0 auto 3rem;
    color: var(--text-light);
}

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

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(30, 95, 116, 0.2);
}

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

.btn-outline {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
}

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

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

.btn-light:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow);
}

/* Header */
#main-header {
    padding: 1.5rem 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

#main-header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 1rem 0;
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
}

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

.logo a {
    font-size: 2.2rem;
    color: var(--primary);
    font-family: var(--hand-drawn);
    font-weight: 400;
}

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

.logo-slogan {
    display: block;
    font-size: 0.7rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    letter-spacing: 2px;
    margin-top: -5px;
    color: var(--text-dark);
}

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

.nav-links a {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
}

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

#main-header.scrolled .nav-links a {
    color: var(--text-dark);
}

/* Hero Section */
.hero-section {
    height: 100vh;
    background: url('images/hero_2.jpeg') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--white);
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, transparent 40%, rgba(255, 255, 255, 0.1) 41%, rgba(255, 255, 255, 0.1) 42%, transparent 43%);
    background-size: 40px 40px;
    opacity: 0.5;
    z-index: 2;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero-content .badge {
    background-color: #f7a8ca;
    /* Soft pink label */
    padding: 0.3rem 1rem;
    border-radius: 5px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 2rem;
    display: inline-block;
    color: var(--secondary);
}

.hero-content h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.hero-content h1 span {
    color: var(--primary-light);
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
}

/* Essence Section */
.essence-section {
    padding: 8rem 0;
    border-bottom: 1px solid #f0f0f0;
    margin-top: 20px;
}

.essence-section--secondary {
    padding-top: 5rem;
}

.essence-section--secondary .essence-grid {
    grid-template-columns: 1.2fr 1fr;
}

.essence-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.essence-image img {
    border-radius: 2rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: auto;
    object-fit: cover;
}

.essence-text h2 {
    font-size: 3rem;
    font-weight: 800;
}

.essence-text p {
    font-size: 1.05rem;
    color: var(--text-light);
}

/* Services Section */
.services-section {
    padding: 10rem 0;
    background-color: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.service-card {
    background-color: #fcfcfc;
    padding: 3rem 2rem;
    border-radius: 2rem;
    text-align: left;
    transition: var(--transition);
    border: 1px solid #f0f0f0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    border-color: #e0e0e0;
}

.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.icon-box.purple {
    background-color: #f4ecf7;
    color: #a55eea;
}

.icon-box.orange {
    background-color: #fbeee6;
    color: #e67e22;
}

.icon-box.green {
    background-color: #eafaf1;
    color: #27ae60;
}

.icon-box.blue {
    background-color: #ebf5fb;
    color: #3498db;
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.service-img img,
.placeholder-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 1.5rem;
}

.featured-service {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    background-color: var(--primary);
    border-radius: 2rem;
    overflow: hidden;
    color: var(--white);
    text-align: left;
    margin-top: 4rem;
}

.featured-content {
    padding: 4rem;
}

.featured-content h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.featured-content p {
    margin-bottom: 3rem;
    opacity: 0.9;
}

.featured-image {
    background: url('images/hero.png') no-repeat center center/cover;
}

/* Vision Mission */
.vision-mission-section {
    padding: 5rem 0 10rem;
}

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

.vm-card {
    background-color: #fcfcfc;
    padding: 4rem;
    border-radius: 2rem;
    border: 1px solid #f0f0f0;
}

.vm-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.vm-card blockquote {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
    border-left: 3px solid var(--primary-light);
}

/* Brands Section */
.brands-section {
    padding: 10rem 0;
    background: radial-gradient(circle at top right, rgba(68, 139, 160, 0.05), transparent 400px);
    position: relative;
    margin-top: 20px;
    margin-bottom: 20px;
}

.brands-section h3 {
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 3px;
    color: #ccc;
    margin-bottom: 2rem;
}

.partner-title {
    font-family: var(--hand-drawn);
    font-size: 2.5rem;
    color: #27ae60;
    margin: 2rem 0;
    position: relative;
    display: inline-block;
}

.partner-title::before,
.partner-title::after {
    content: '↔';
    position: absolute;
    font-size: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
}

.partner-title::before {
    left: -40px;
}

.partner-title::after {
    right: -40px;
}

.brands-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.brand-wrapper {
    position: relative;
    padding: 2rem;
}

.brand-wrapper .hand-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    border: 2px solid;
    border-radius: 50% 45% 55% 48% / 45% 55% 48% 52%;
    z-index: -1;
    opacity: 0.6;
}

.brand-logo {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logo img {
    max-width: 100px;
    max-height: 100px;
    object-fit: contain;
    filter: grayscale(0);
    transition: var(--transition);
}

.brand-logo img:hover {
    transform: scale(1.1);
}

.brand-wrapper:nth-child(1) .hand-circle {
    color: #e91e63;
    transform: translate(-50%, -50%) rotate(5deg);
}

.brand-wrapper:nth-child(2) .hand-circle {
    color: #9c27b0;
    transform: translate(-50%, -50%) rotate(-3deg);
}

.brand-wrapper:nth-child(3) .hand-circle {
    color: #4caf50;
    transform: translate(-50%, -50%) rotate(7deg);
}

.brand-wrapper:nth-child(4) .hand-circle {
    color: #f44336;
    transform: translate(-50%, -50%) rotate(-5deg);
}

.brand-wrapper:nth-child(5) .hand-circle {
    color: #ff9800;
    transform: translate(-50%, -50%) rotate(2deg);
}

/* Find Us Section */
.find-us-section {
    padding: 10rem 0;
}

.locations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.location-card {
    background: #fff;
    border-radius: 2rem;
    overflow: hidden;
    padding-bottom: 2rem;
}

.location-img {
    height: 250px;
    background-color: #f7f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 5rem;
    transition: var(--transition);
}

.location-card:hover .location-img {
    background-color: var(--primary);
    color: var(--white);
}

.location-card h4 {
    margin: 2rem 2rem 0.5rem;
    font-size: 1.5rem;
}

.location-card p {
    margin: 0 2rem;
    color: var(--text-light);
}

/* Inquiry Section */
.inquiry-section {
    background-color: #2b2b2b;
    padding: 6rem 0;
    color: var(--white);
}

.inquiry-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.inquiry-text h3 {
    font-size: 2.2rem;
}

.inquiry-text h3 span {
    display: block;
    font-size: 1.2rem;
    font-weight: 400;
    margin-top: 1rem;
    opacity: 0.7;
}

.inquiry-form {
    display: flex;
    background: #3a3a3a;
    padding: 0.5rem;
    border-radius: 50px;
}

.inquiry-form input {
    background: transparent;
    border: none;
    padding: 1rem 2rem;
    color: white;
    flex: 1;
    font-size: 1rem;
    outline: none;
}

.inquiry-form button {
    background-color: #3498db;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
}

/* Footer */
#main-footer {
    padding: 10rem 0 3rem;
    background-color: #1a1a1a;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.footer-brand .logo a {
    color: var(--white);
    font-size: 2rem;
}

.footer-brand p {
    margin-top: 2rem;
    opacity: 0.6;
    max-width: 300px;
}

.footer-links h5,
.footer-inquiry h5 {
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 2.5rem;
    opacity: 0.5;
}

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

.footer-links ul li a:hover {
    color: var(--primary-light);
}

.footer-inquiry p {
    margin-bottom: 1rem;
    opacity: 0.6;
}

.footer-bottom {
    margin-top: 8rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    opacity: 0.4;
    font-size: 0.8rem;
    position: relative;
    z-index: 2;
}

.legal-links a {
    margin-left: 2rem;
}

.footer-bg-text {
    position: absolute;
    bottom: -50px;
    right: -20px;
    font-size: 15vw;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    pointer-events: none;
    line-height: 1;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }

    .essence-grid {
        gap: 3rem;
    }
}

@media (max-width: 768px) {

    /* ---- HEADER ---- */
    .nav-links {
        display: none;
    }

    .header-cta .btn {
        padding: 0.7rem 1.3rem;
        font-size: 0.8rem;
    }

    /* ---- HERO ---- */
    .hero-content {
        padding: 0 1rem;
    }

    .hero-content h1 {
        font-size: 2.6rem;
        line-height: 1.1;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .hero-btns {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-btns .btn {
        width: 100%;
        text-align: center;
        padding: 1rem;
    }

    /* ---- ESSENCE / WHO WE ARE ---- */
    .essence-section {
        padding: 4rem 0;
        border-bottom: 1px solid #efefef;
    }

    .essence-section--secondary {
        padding-top: 4rem;
    }

    /* Override the desktop-only custom columns on secondary section */
    .essence-section--secondary .essence-grid {
        grid-template-columns: 1fr;
    }

    /* Reverse order so image appears AFTER text on mobile for secondary section */
    .essence-section--secondary .essence-text {
        order: 1;
    }

    .essence-section--secondary .essence-image {
        order: 2;
    }

    .essence-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .essence-text h2 {
        font-size: 1.8rem;
    }

    .essence-image img {
        max-height: 500px;
        object-fit: cover;
        width: 100%;
    }

    /* ---- SERVICES ---- */
    .services-section {
        padding: 5rem 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }

    .featured-service {
        grid-template-columns: 1fr;
    }

    .featured-image {
        height: 220px;
    }

    .featured-content {
        padding: 2.5rem 2rem;
    }

    /* ---- VISION / MISSION / EXPANSION ---- */
    .vision-mission-section {
        padding: 5rem 0;
    }

    .vision-mission-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .vm-card {
        padding: 2rem;
    }

    .vm-card h3 {
        font-size: 1.4rem;
    }

    .vm-card blockquote {
        font-size: 0.95rem;
    }

    /* ---- BRANDS / PARTNERS ---- */
    .brands-section {
        padding: 5rem 0;
    }

    .partner-title {
        font-size: 1.8rem;
        margin: 1rem 0;
    }

    .partner-title::before,
    .partner-title::after {
        display: none;
    }

    .brands-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        padding: 1rem;
    }

    .brand-wrapper {
        padding: 2rem;
    }

    .brand-wrapper .hand-circle {
        width: 110px;
        height: 110px;
    }

    .brand-logo img {
        max-width: 75px;
        max-height: 75px;
    }

    /* ---- FIND US ---- */
    .find-us-section {
        padding: 5rem 0;
    }

    .locations-grid {
        grid-template-columns: 1fr;
    }

    /* ---- INQUIRY / CONTACT ---- */
    .inquiry-section {
        padding: 4rem 0;
    }

    .inquiry-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .inquiry-text h3 {
        font-size: 1.6rem;
    }

    /* ---- FOOTER ---- */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        margin-top: 4rem;
    }

    .legal-links a {
        margin-left: 1rem;
    }

    /* ---- GLOBAL ---- */
    h2 {
        font-size: 2rem;
    }

    .container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 480px) {

    /* ---- HERO ---- */
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content .badge {
        font-size: 0.65rem;
    }

    /* ---- FOOTER ---- */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bg-text {
        font-size: 22vw;
    }

    /* ---- BRANDS ---- */
    .brands-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    /* ---- SECTIONS PADDING ---- */
    .essence-section {
        padding: 4rem 0;
    }

    .services-section {
        padding: 4rem 0;
    }

    .find-us-section {
        padding: 4rem 0;
    }

    .vision-mission-section {
        padding: 3rem 0;
    }

    .container {
        padding: 0 1rem;
    }
}