/* ===============================================
   Cozeen Clean - Styles
   Brand Colors: #f2724e (coral), #027361 (teal), #faf2e3 (cream)
   =============================================== */

/* ===============================================
   Reset & Base Styles
   =============================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --coral: #c6aa98;
    --teal: #9a9b87;
    --cream: #f5f0e8;
    --white: #ffffff;
    --dark: #2d2620;
    --gray: #6b5f50;
    --light-gray: #f8f6f2;
    --transition: all 0.3s ease;
    --accent-blush: #d4bfb3;
    --accent-olive: #85876d;
    --warm-beige: #e8dcc8;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
}

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

/* ===============================================
   Typography
   =============================================== */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    font-family: 'Playfair Display', serif;
}

h2 {
    font-size: 2.5rem;
    font-family: 'Playfair Display', serif;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

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

a:hover {
    color: var(--teal);
}

/* ===============================================
   Buttons
   =============================================== */
.btn-primary,
.btn-secondary,
.btn-large {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary {
    background-color: var(--coral);
    color: var(--white);
    border-color: var(--coral);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.4) 50%,
        transparent 70%
    );
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--coral);
    border-color: var(--coral);
    box-shadow: 0 5px 20px rgba(198, 170, 152, 0.3);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--teal);
    border-color: var(--teal);
}

.btn-secondary:hover {
    background-color: var(--teal);
    color: var(--white);
    box-shadow: 0 5px 20px rgba(154, 155, 135, 0.3);
    transform: translateY(-2px);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

/* ===============================================
   Navigation
   =============================================== */
.navbar {
    background-color: var(--white);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.logo-text {
    color: var(--teal);
}

.logo-accent {
    color: var(--coral);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--dark);
    font-weight: 500;
    transition: var(--transition);
}

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

.nav-links .btn-primary {
    color: var(--white);
    font-weight: 700;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--dark);
    margin: 3px 0;
    transition: var(--transition);
}

/* ===============================================
   Hero Section
   =============================================== */
.hero {
    background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.hero-title .cozy {
    color: var(--teal);
}

.hero-title .clean {
    color: var(--coral);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #5a5045;
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.badge {
    background-color: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.95rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.launch-notice {
    font-size: 1.1rem;
    color: var(--coral);
    font-weight: 600;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.hero-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(198, 170, 152, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

/* ===============================================
   Services Section
   =============================================== */
.services {
    padding: 80px 0;
    background-color: var(--white);
}

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

.section-header h2 {
    color: var(--teal);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #5a5045;
}

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

.service-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    position: relative;
}

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

.service-card.featured {
    background: linear-gradient(135deg, var(--teal) 0%, var(--accent-olive) 100%);
    color: var(--white);
}

.featured-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background-color: var(--coral);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--dark);
}

.service-card p {
    color: #5a5045;
}

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

.service-features {
    list-style: none;
    margin-top: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card.featured .service-features li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.price-badge {
    margin-top: 1.5rem;
    padding: 10px 20px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    text-align: center;
    font-weight: 600;
}

/* ===============================================
   About Section
   =============================================== */
.about {
    padding: 80px 0;
    background-color: var(--cream);
}

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

.about-text h2 {
    color: var(--teal);
    margin-bottom: 1.5rem;
}

.about-intro {
    font-size: 1.2rem;
    font-weight: 600;
    color: #b8897c;
    margin-bottom: 1.5rem;
}

.about-values {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.value-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.value-icon {
    font-size: 2rem;
}

.value-item h4 {
    margin-bottom: 0.5rem;
    color: var(--teal);
}

.value-item p {
    color: #5a5045;
    margin: 0;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--teal) 0%, var(--accent-olive) 100%);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.image-placeholder span {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.image-placeholder p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* ===============================================
   Service Areas Section
   =============================================== */
.service-areas {
    padding: 80px 0;
    background-color: var(--white);
}

.areas-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.map-placeholder {
    background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
    border: 3px solid var(--coral);
    border-radius: 20px;
    padding: 3rem;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.map-placeholder h3 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.areas-list h3 {
    color: var(--teal);
    margin-bottom: 1.5rem;
}

.area-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.area-tag {
    background-color: var(--cream);
    color: #5a5045;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid #8b9b7a;
}

.areas-note {
    color: #5a5045;
    font-size: 0.95rem;
}

/* ===============================================
   Why Choose Section
   =============================================== */
.why-choose {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--teal) 0%, var(--accent-olive) 100%);
    color: var(--white);
}

.why-choose h2 {
    text-align: center;
    color: var(--white);
    margin-bottom: 3rem;
}

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

.benefit-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.benefit-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--coral);
    display: block;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* ===============================================
   Join Our Team Section
   =============================================== */
.join-team {
    padding: 80px 0;
    background-color: var(--white);
}

.join-team-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.join-team-text h2 {
    color: var(--teal);
    margin-bottom: 1.5rem;
}

.join-team-intro {
    font-size: 1.2rem;
    color: #5a5045;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.join-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.join-benefit-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.join-icon {
    font-size: 1.5rem;
    color: var(--teal);
    font-weight: 700;
    min-width: 30px;
}

.join-benefit-item h4 {
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.join-benefit-item p {
    color: #5a5045;
    margin: 0;
}

.join-cta {
    text-align: left;
}

.join-note {
    margin-top: 1rem;
    color: #5a5045;
    font-size: 0.95rem;
}

.join-note a {
    color: var(--coral);
    font-weight: 600;
}

.join-team-visual {
    display: flex;
    align-items: center;
}

.join-visual-card {
    background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
    padding: 3rem;
    border-radius: 20px;
    border: 3px solid var(--teal);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.join-visual-card h3 {
    color: var(--teal);
    margin-bottom: 1.5rem;
}

.join-visual-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.join-visual-card ul li {
    padding: 0.75rem 0;
    color: var(--dark);
    border-bottom: 1px solid rgba(154, 155, 135, 0.2);
    position: relative;
    padding-left: 1.5rem;
}

.join-visual-card ul li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--coral);
    font-weight: 700;
}

.join-visual-card ul li:last-child {
    border-bottom: none;
}

.join-footer-text {
    color: #5a5045;
    font-style: italic;
    margin: 0;
}

/* ===============================================
   Contact Section
   =============================================== */
.contact {
    padding: 80px 0;
    background-color: var(--cream);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    color: var(--teal);
    margin-bottom: 1.5rem;
}

.contact-intro {
    font-size: 1.1rem;
    color: #5a5045;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    font-size: 2rem;
}

.contact-item h4 {
    margin-bottom: 0.5rem;
    color: var(--teal);
}

.contact-item a {
    color: var(--dark);
    font-weight: 600;
}

.early-bird-banner {
    background: linear-gradient(135deg, var(--coral) 0%, var(--accent-blush) 100%);
    color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
}

.early-bird-banner h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.early-bird-banner p {
    margin: 0;
    font-size: 1.05rem;
}

.social-media-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--cream);
}

.social-media-section h4 {
    color: var(--teal);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: var(--cream);
    border-radius: 50%;
    color: var(--teal);
    transition: var(--transition);
    border: 2px solid transparent;
}

.social-link:hover {
    background-color: var(--teal);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(154, 155, 135, 0.3);
    border-color: var(--teal);
}

.social-link svg {
    width: 24px;
    height: 24px;
}

.contact-form-container {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    color: var(--teal);
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--coral);
}

.form-note {
    text-align: center;
    color: #5a5045;
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* ===============================================
   Footer
   =============================================== */
.footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand .logo {
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.footer-tagline {
    font-size: 0.9rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    color: var(--coral);
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--white);
}

.footer-social {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-social a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    font-size: 0.9rem;
}

.footer-social a:hover {
    color: var(--coral);
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin: 0;
}

/* ===============================================
   Responsive Design
   =============================================== */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
    }

    .hero-title {
        font-size: 2.5rem;
    }

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

    .hero-cta {
        flex-direction: column;
    }

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

    .about-content {
        grid-template-columns: 1fr;
    }

    .areas-content {
        grid-template-columns: 1fr;
    }

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

    .join-team-content {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0 40px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .btn-large {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .services,
    .about,
    .service-areas,
    .why-choose,
    .join-team,
    .contact {
        padding: 50px 0;
    }
}
