/* Spacecake Interiors - Static Website Styles */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600&family=Manrope:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

/* CSS Variables */
:root {
    --background: #FAF9F7;
    --foreground: #1A1A1A;
    --muted: #F2F2F0;
    --muted-foreground: #666666;
    --border: #E5E5E3;
    --accent: #6B5D50;
    --white: #FFFFFF;
    --dark: #1A1A1A;
    
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.font-serif { font-family: var(--font-serif); }
.font-sans { font-family: var(--font-sans); }
.font-mono { font-family: var(--font-mono); }

/* Links & Buttons */
a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.7;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background-color: #333;
    opacity: 1;
}

.btn-outline {
    background-color: transparent;
    color: var(--foreground);
    border: 1px solid var(--foreground);
}

.btn-outline:hover {
    background-color: var(--foreground);
    color: var(--white);
    opacity: 1;
}

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

.btn-white:hover {
    background-color: rgba(255, 255, 255, 0.9);
    opacity: 1;
}

.btn-outline-white {
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

.btn-outline-white:hover {
    background-color: var(--white);
    color: var(--dark);
    opacity: 1;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 0 1.5rem;
}

@media (min-width: 768px) {
    .nav {
        padding: 0 3rem;
    }
}

@media (min-width: 1024px) {
    .nav {
        padding: 0 6rem;
    }
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5rem;
}

@media (min-width: 768px) {
    .nav-inner {
        height: 6rem;
    }
}

.nav.scrolled {
    background-color: rgba(250, 249, 247, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav.scrolled .nav-link,
.nav.scrolled .logo {
    color: var(--foreground);
}

.nav.transparent .nav-link,
.nav.transparent .logo {
    color: var(--white);
}

.logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    letter-spacing: -0.02em;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .nav-links {
        display: flex;
    }
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 400;
    transition: opacity 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    opacity: 0.7;
}

.nav-cta {
    display: none;
}

@media (min-width: 1024px) {
    .nav-cta {
        display: block;
    }
}

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

@media (min-width: 1024px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu-btn svg {
    width: 24px;
    height: 24px;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--background);
    z-index: 2000;
    padding: 6rem 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-link {
    font-family: var(--font-serif);
    font-size: 2rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
}

.mobile-menu-cta {
    margin-top: auto;
}

/* Sections */
.section {
    padding: 4rem 1.5rem;
}

@media (min-width: 768px) {
    .section {
        padding: 6rem 3rem;
    }
}

@media (min-width: 1024px) {
    .section {
        padding: 8rem 6rem;
    }
}

.container {
    max-width: 1280px;
    margin: 0 auto;
}

.container-sm {
    max-width: 900px;
    margin: 0 auto;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 2rem 1.5rem;
    width: 100%;
}

@media (min-width: 768px) {
    .hero-content {
        padding: 2rem 3rem;
    }
}

@media (min-width: 1024px) {
    .hero-content {
        padding: 2rem 6rem;
    }
}

.hero-content h1 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    max-width: 900px;
}

@media (min-width: 640px) {
    .hero-content h1 {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero-content h1 {
        font-size: 4.5rem;
    }
}

.hero-content h1 em {
    font-style: italic;
}

.hero-content .subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
    margin-bottom: 1rem;
    max-width: 600px;
}

.hero-content .welcome {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.hero-btns {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2.5rem;
}

@media (min-width: 640px) {
    .hero-btns {
        flex-direction: row;
    }
}

/* Page Header */
.page-header {
    padding-top: 8rem;
    padding-bottom: 4rem;
    background-color: var(--background);
}

@media (min-width: 768px) {
    .page-header {
        padding-top: 10rem;
        padding-bottom: 6rem;
    }
}

.page-header .label {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--muted-foreground);
    margin-bottom: 1rem;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .page-header h1 {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .page-header h1 {
        font-size: 3.75rem;
    }
}

.page-header h1 em {
    font-style: italic;
    color: var(--muted-foreground);
}

.page-header p {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    max-width: 768px;
}

/* Background Variations */
.bg-light { background-color: var(--background); }
.bg-muted { background-color: var(--muted); }
.bg-dark { background-color: var(--dark); color: var(--white); }

/* Grid Layouts */
.grid {
    display: grid;
    gap: 2rem;
}

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

@media (min-width: 768px) {
    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

@media (min-width: 768px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.grid-4 {
    grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
    .grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Cards */
.card {
    background-color: var(--white);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
}

.card-image {
    aspect-ratio: 4/3;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.card-content {
    padding: 1.5rem;
}

.card-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.card-text {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 1rem;
}

/* Stats */
.stat-box {
    text-align: center;
    padding: 1.5rem;
    background-color: var(--muted);
}

.bg-dark .stat-box {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .stat-number {
        font-size: 2.5rem;
    }
}

.stat-label {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted-foreground);
}

.bg-dark .stat-label {
    color: rgba(255, 255, 255, 0.6);
}

/* Pillars/Features */
.pillar {
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: border-color 0.3s ease;
}

.pillar:hover {
    border-color: rgba(255, 255, 255, 0.3);
}

.pillar-number {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 1rem;
}

.pillar-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.pillar-desc {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Section Headers */
.section-label {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--muted-foreground);
    margin-bottom: 1rem;
}

.bg-dark .section-label {
    color: rgba(255, 255, 255, 0.5);
}

.section-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .section-title {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-desc {
    color: var(--muted-foreground);
    max-width: 600px;
}

.bg-dark .section-desc {
    color: rgba(255, 255, 255, 0.7);
}

/* Image Styles */
.image-container {
    position: relative;
    overflow: hidden;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.aspect-4-3 { aspect-ratio: 4/3; }
.aspect-4-5 { aspect-ratio: 4/5; }
.aspect-16-9 { aspect-ratio: 16/9; }
.aspect-square { aspect-ratio: 1/1; }

/* Two Column Layouts */
.two-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .two-col {
        grid-template-columns: repeat(2, 1fr);
        gap: 6rem;
    }
}

/* Check List */
.check-list {
    list-style: none;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
}

.check-list li::before {
    content: "";
    width: 18px;
    height: 18px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%231A1A1A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
}

/* FAQ Accordion */
.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.faq-question h3 {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    padding-right: 2rem;
}

.faq-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding-bottom: 1.5rem;
    color: var(--muted-foreground);
    line-height: 1.7;
}

.faq-item.open .faq-answer {
    display: block;
}

/* Category Filters */
.filter-btn {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    background: none;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--foreground);
    color: var(--white);
    border-color: var(--foreground);
}

.bg-dark .filter-btn {
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
}

.bg-dark .filter-btn:hover,
.bg-dark .filter-btn.active {
    background-color: var(--white);
    color: var(--dark);
    border-color: var(--white);
}

/* Project Card */
.project-card {
    background-color: var(--white);
}

.project-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

.project-location {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 0.75rem;
}

/* Team Member */
.team-member {
    background-color: var(--white);
}

.team-member-image {
    aspect-ratio: 4/5;
    overflow: hidden;
}

.team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.5s ease;
}

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

.team-member-info {
    padding: 1.5rem;
}

.team-member-name {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.team-member-role {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted-foreground);
    margin-bottom: 0.75rem;
}

.team-member-bio {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* Testimonial */
.testimonial {
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-quote {
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.testimonial-name {
    font-weight: 500;
}

.testimonial-details {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Experience Centre Card */
.centre-card {
    background-color: var(--white);
}

.centre-card-image {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.centre-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.centre-card-content {
    padding: 1.5rem 2rem;
}

@media (min-width: 768px) {
    .centre-card-content {
        padding: 2rem;
    }
}

.centre-card-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.centre-card-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.centre-card-info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.centre-card-info-item svg {
    flex-shrink: 0;
    margin-top: 2px;
}

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

.form-label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted-foreground);
    margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.75rem 0;
    font-family: var(--font-sans);
    font-size: 1rem;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border);
    outline: none;
    transition: border-color 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--foreground);
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
    border: 1px solid var(--border);
    padding: 1rem;
    background-color: var(--white);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Contact Info */
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-info-icon {
    padding: 0.75rem;
    background-color: var(--muted);
}

.contact-info-title {
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.contact-info-text {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

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

@media (min-width: 768px) {
    .footer {
        padding: 6rem 3rem;
    }
}

@media (min-width: 1024px) {
    .footer {
        padding: 6rem 6rem;
    }
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}

.footer-brand p {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    max-width: 280px;
}

.footer-heading {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 1.5rem;
}

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

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

.footer-links a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
    opacity: 1;
}

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

.footer-contact-item svg {
    color: rgba(255, 255, 255, 0.4);
    margin-top: 4px;
    flex-shrink: 0;
}

.footer-contact-item p,
.footer-contact-item a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-item span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-copyright {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-legal a:hover {
    color: rgba(255, 255, 255, 0.7);
}

/* Material Category */
.material-category {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .material-category {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem;
    }
}

.material-category:nth-child(even) .material-image {
    order: 2;
}

@media (min-width: 1024px) {
    .material-category:nth-child(even) .material-image {
        order: 2;
    }
    
    .material-category:nth-child(even) .material-content {
        order: 1;
    }
}

.material-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .material-title {
        font-size: 2rem;
    }
}

.material-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.material-tag {
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    background-color: var(--white);
    border: 1px solid var(--border);
}

/* Blog Article */
.blog-article {
    transition: transform 0.3s ease;
}

.blog-article:hover {
    transform: translateY(-4px);
}

.blog-article-image {
    aspect-ratio: 4/3;
    overflow: hidden;
    margin-bottom: 1rem;
}

.blog-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.blog-article-meta {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    margin-bottom: 0.5rem;
}

.blog-article-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    transition: opacity 0.3s ease;
}

.blog-article:hover .blog-article-title {
    opacity: 0.7;
}

.blog-article-excerpt {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 0.75rem;
}

.blog-article-date {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

/* Featured Blog */
.featured-blog {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .featured-blog {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

.featured-blog-image {
    aspect-ratio: 4/3;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .featured-blog-image {
        aspect-ratio: auto;
        height: 100%;
    }
}

.featured-blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-blog-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-blog-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .featured-blog-title {
        font-size: 2rem;
    }
}

@media (min-width: 1024px) {
    .featured-blog-title {
        font-size: 2.5rem;
    }
}

/* Newsletter */
.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .newsletter-form {
        flex-direction: row;
    }
}

.newsletter-input {
    flex: 1;
    padding: 0.75rem 1rem;
    font-family: var(--font-sans);
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    outline: none;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-input:focus {
    border-color: rgba(255, 255, 255, 0.5);
}

/* Service Process */
.process-step {
    text-align: center;
}

.process-step-number {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--muted-foreground);
    margin-bottom: 0.5rem;
}

.process-step-title {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.process-step-desc {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

/* Values Grid */
.value-card {
    padding: 1.5rem;
    border: 1px solid var(--border);
    transition: border-color 0.3s ease;
}

.value-card:hover {
    border-color: var(--foreground);
}

.value-card-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.value-card-desc {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* Quote Section */
.quote-section {
    text-align: center;
}

.quote-text {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.5;
    max-width: 800px;
    margin: 0 auto 2rem;
}

@media (min-width: 640px) {
    .quote-text {
        font-size: 2rem;
    }
}

@media (min-width: 1024px) {
    .quote-text {
        font-size: 2.5rem;
    }
}

.quote-attribution {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

/* Principles */
.principle {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 3rem 0;
    border-bottom: 1px solid var(--border);
}

@media (min-width: 768px) {
    .principle {
        grid-template-columns: 80px 1fr 2fr;
        gap: 2rem;
    }
}

.principle-number {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.principle-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
}

.principle-desc {
    color: var(--muted-foreground);
    line-height: 1.7;
}

/* Finish Options */
.finish-card {
    padding: 1.5rem;
    border: 1px solid var(--border);
    transition: border-color 0.3s ease;
}

.finish-card:hover {
    border-color: var(--foreground);
}

.finish-card-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.finish-card-desc {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* Callback Form Container */
.callback-form-container {
    background-color: var(--white);
    padding: 2rem;
}

.callback-form-intro {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
}

/* Feature List */
.feature-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .feature-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .feature-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background-color: var(--white);
}

.feature-item::before {
    content: "";
    width: 6px;
    height: 6px;
    background-color: var(--foreground);
    border-radius: 50%;
    flex-shrink: 0;
}

.feature-item span {
    font-size: 0.875rem;
}

/* Map Placeholder */
.map-card {
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--muted);
    border: 1px solid var(--border);
    transition: border-color 0.3s ease;
}

.map-card:hover {
    border-color: var(--foreground);
}

.map-card-content {
    text-align: center;
}

.map-card-content svg {
    width: 32px;
    height: 32px;
    margin: 0 auto 0.5rem;
    color: var(--muted-foreground);
    transition: color 0.3s ease;
}

.map-card:hover .map-card-content svg {
    color: var(--foreground);
}

.map-card-title {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.map-card-text {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

/* Coverage Areas */
.coverage-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.coverage-tag {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    background-color: var(--muted);
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mt-auto { margin-top: auto; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

@media (min-width: 640px) {
    .sm\:flex-row { flex-direction: row; }
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--muted);
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.3);
}

/* Selection */
::selection {
    background-color: var(--foreground);
    color: var(--white);
}

/* Print styles */
@media print {
    .nav, .footer, .mobile-menu {
        display: none;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1500;
    display: flex;
    align-items: center;
    gap: 12px;
}

.whatsapp-float-btn {
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.whatsapp-float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    opacity: 1;
}

.whatsapp-float-btn svg {
    width: 32px;
    height: 32px;
    fill: white;
}

.whatsapp-tooltip {
    background-color: var(--white);
    padding: 10px 16px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
    font-size: 0.875rem;
    color: var(--foreground);
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 16px;
        right: 16px;
    }
    
    .whatsapp-float-btn {
        width: 56px;
        height: 56px;
    }
    
    .whatsapp-float-btn svg {
        width: 28px;
        height: 28px;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
}
