@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

:root {
    --color-sky-blue: #87CEEB;
    --color-charcoal: #36454F;
    --color-off-white: #FDFDFA;
    --color-gold: #FFD700;
    --color-olive: #6B8E23;
    --color-gold-dark: #CCAA00;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Open Sans', sans-serif;
    --header-height: 70px;
    --transition-base: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-charcoal);
    background-color: var(--color-off-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

a {
    text-decoration: none;
    color: inherit;
}

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

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

.section {
    padding: 60px 0;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: var(--color-off-white);
    z-index: 1000;
    transition: box-shadow var(--transition-base), height var(--transition-base);
}

.header.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    height: 60px;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-desktop {
    display: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-charcoal);
    position: relative;
    transition: color var(--transition-base);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-sky-blue);
    transition: width var(--transition-base);
}

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

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

.header-actions {
    display: none;
    align-items: center;
    gap: 20px;
}

.phone-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-charcoal);
    transition: color var(--transition-base);
}

.phone-link:hover {
    color: var(--color-sky-blue);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--transition-base);
    border: none;
    text-align: center;
}

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

.btn-primary:hover {
    background: var(--color-gold-dark);
    transform: translateY(-2px);
}

.btn-primary:active {
    transform: scale(0.98);
}

.btn-secondary {
    background: transparent;
    color: var(--color-charcoal);
    font-weight: 600;
    position: relative;
    padding: 8px 0;
}

.btn-secondary::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-sky-blue);
    transition: width var(--transition-base);
}

.btn-secondary:hover {
    color: var(--color-sky-blue);
}

.btn-secondary:hover::after {
    width: 100%;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-charcoal);
    transition: all var(--transition-base);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-off-white);
    padding: 40px 20px;
    transform: translateX(100%);
    transition: transform var(--transition-base);
    z-index: 999;
    overflow-y: auto;
}

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

.mobile-nav-links {
    list-style: none;
    text-align: center;
}

.mobile-nav-links li {
    margin: 25px 0;
}

.mobile-nav-links a {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--color-charcoal);
    transition: color var(--transition-base);
}

.mobile-nav-links a:hover {
    color: var(--color-sky-blue);
}

.mobile-cta {
    display: block;
    margin-top: 40px;
    text-align: center;
}

.mobile-call-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--color-gold);
    color: var(--color-charcoal);
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: var(--header-height);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.5));
}

.hero-content {
    text-align: center;
    color: white;
    padding: 20px;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.hero-content p {
    font-size: 1rem;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.3s forwards;
}

.hero-content .btn {
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.6s forwards;
}

/* Value Proposition Section */
.value-prop {
    background: var(--color-off-white);
    text-align: center;
}

.value-prop h2 {
    margin-bottom: 50px;
}

.value-grid {
    display: grid;
    gap: 30px;
}

.value-card {
    padding: 30px 20px;
}

.value-card img {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
}

.value-card h4 {
    margin-bottom: 15px;
    color: var(--color-charcoal);
}

.value-card p {
    font-size: 0.95rem;
    color: #666;
}

/* Services Overview */
.services-overview {
    background: linear-gradient(to bottom, var(--color-off-white), #f5f5f0);
}

.services-overview h2 {
    text-align: center;
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    gap: 30px;
}

.service-card {
    background: var(--color-off-white);
    border-radius: 10px;
    padding: 30px 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all var(--transition-base);
    cursor: pointer;
}

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

.service-card img {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
}

.service-card h4 {
    margin-bottom: 15px;
}

.service-card p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 20px;
}

/* Transformation Showcase */
.transformation-showcase {
    background: var(--color-charcoal);
    color: white;
    text-align: center;
}

.transformation-showcase h2 {
    margin-bottom: 20px;
}

.transformation-showcase > .container > p {
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.before-after-slider {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 10px;
}

.slider-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}

.slider-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-image.before {
    clip-path: inset(0 50% 0 0);
}

.slider-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: var(--color-sky-blue);
    cursor: ew-resize;
    transform: translateX(-50%);
}

.slider-handle::before {
    content: '< >';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: var(--color-sky-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: white;
    font-weight: bold;
}

/* Process Section */
.process {
    background: var(--color-off-white);
}

.process h2 {
    text-align: center;
    margin-bottom: 50px;
}

.process-steps {
    display: grid;
    gap: 40px;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--color-sky-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.process-step h4 {
    margin-bottom: 10px;
}

.process-step p {
    font-size: 0.95rem;
    color: #666;
}

/* Why Choose Us */
.why-choose-us {
    background: var(--color-off-white);
}

.why-choose-us .container {
    display: grid;
    gap: 40px;
}

.why-image img {
    border-radius: 10px;
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.why-content h2 {
    margin-bottom: 30px;
}

.why-features {
    display: grid;
    gap: 25px;
}

.why-feature {
    display: flex;
    gap: 15px;
}

.why-feature img {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
}

.why-feature h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.why-feature p {
    font-size: 0.9rem;
    color: #666;
}

/* Testimonials */
.testimonials {
    background: linear-gradient(to bottom, #f9f9f5, var(--color-off-white));
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 50px;
}

.testimonials-grid {
    display: grid;
    gap: 30px;
}

.testimonial-card {
    background: var(--color-off-white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.testimonial-card blockquote {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-card cite {
    font-style: normal;
    font-weight: 600;
    color: var(--color-charcoal);
}

/* CTA Strip */
.cta-strip {
    background: var(--color-gold);
    text-align: center;
    padding: 60px 20px;
}

.cta-strip h2 {
    margin-bottom: 30px;
    color: var(--color-charcoal);
}

.cta-strip .btn {
    background: var(--color-charcoal);
    color: white;
}

.cta-strip .btn:hover {
    background: #4a5a66;
}

/* Latest Inspiration */
.latest-inspiration {
    background: var(--color-off-white);
}

.latest-inspiration h2 {
    text-align: center;
    margin-bottom: 50px;
}

.inspiration-grid {
    display: grid;
    gap: 30px;
}

.inspiration-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all var(--transition-base);
}

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

.inspiration-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform var(--transition-base);
}

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

.inspiration-card-content {
    padding: 20px;
}

.inspiration-card h4 {
    margin-bottom: 10px;
}

/* Contact Teaser */
.contact-teaser {
    background: linear-gradient(to bottom, var(--color-off-white), #f5f5f0);
    text-align: center;
}

.contact-teaser h2 {
    margin-bottom: 20px;
}

.contact-teaser > .container > p {
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form-mini {
    max-width: 500px;
    margin: 0 auto;
    display: grid;
    gap: 15px;
}

.contact-form-mini input,
.contact-form-mini textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color var(--transition-base);
}

.contact-form-mini input:focus,
.contact-form-mini textarea:focus {
    outline: none;
    border-color: var(--color-sky-blue);
}

.contact-form-mini textarea {
    min-height: 120px;
    resize: vertical;
}

/* Footer */
.footer {
    background: var(--color-charcoal);
    color: var(--color-off-white);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand .logo img {
    filter: brightness(0) invert(1);
}

.footer-brand p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 20px;
}

.footer h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: white;
}

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

.footer-links li {
    margin: 12px 0;
}

.footer-links a {
    font-size: 0.95rem;
    opacity: 0.8;
    transition: all var(--transition-base);
}

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

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

.footer-services li {
    font-size: 0.9rem;
    opacity: 0.7;
    margin: 10px 0;
}

.footer-contact p {
    font-size: 0.9rem;
    margin: 10px 0;
    opacity: 0.8;
}

.footer-contact a {
    color: var(--color-sky-blue);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}

.social-icons a:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
}

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

/* Page Hero Sections */
.page-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: var(--header-height);
    background: var(--color-charcoal);
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

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

.page-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    padding: 40px 20px;
}

.page-hero-content h1 {
    margin-bottom: 15px;
}

.page-hero-content p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Services Page Specific */
.services-intro {
    background: var(--color-off-white);
    text-align: center;
}

.services-intro h2 {
    margin-bottom: 20px;
}

.services-intro p {
    max-width: 700px;
    margin: 0 auto;
    color: #666;
}

.service-detail {
    background: var(--color-off-white);
}

.service-detail .container {
    display: grid;
    gap: 40px;
}

.service-detail-content h3 {
    margin-bottom: 20px;
}

.service-detail-content p {
    margin-bottom: 20px;
    color: #666;
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 25px;
}

.service-detail-content li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
}

.service-detail-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-sky-blue);
    font-weight: bold;
}

.service-detail-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

.service-detail:nth-child(even) .service-detail-image {
    order: -1;
}

/* FAQ Section */
.faq {
    background: var(--color-off-white);
}

.faq h2 {
    text-align: center;
    margin-bottom: 40px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #ddd;
}

.faq-question {
    width: 100%;
    padding: 20px 0;
    background: none;
    border: none;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-charcoal);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--color-sky-blue);
    transition: transform var(--transition-base);
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base);
}

.faq-answer p {
    padding-bottom: 20px;
    color: #666;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

/* Portfolio Page */
.portfolio-intro {
    background: var(--color-off-white);
    text-align: center;
}

.portfolio-intro h2 {
    margin-bottom: 15px;
}

.portfolio-intro p {
    max-width: 600px;
    margin: 0 auto 30px;
    color: #666;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.filter-btn {
    padding: 10px 20px;
    background: transparent;
    border: 2px solid var(--color-charcoal);
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
}

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

.portfolio-grid {
    display: grid;
    gap: 20px;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

.portfolio-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform var(--transition-base);
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    transform: translateY(100%);
    transition: transform var(--transition-base);
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

.portfolio-overlay h4 {
    font-family: var(--font-heading);
    margin-bottom: 5px;
}

.portfolio-overlay span {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* About Page */
.our-story {
    background: var(--color-off-white);
}

.our-story .container {
    display: grid;
    gap: 40px;
}

.our-story-content h2 {
    margin-bottom: 20px;
}

.our-story-content p {
    margin-bottom: 20px;
    color: #666;
}

.our-story-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

.philosophy {
    background: var(--color-off-white);
    text-align: center;
}

.philosophy h2 {
    margin-bottom: 50px;
}

.philosophy-grid {
    display: grid;
    gap: 30px;
}

.philosophy-card {
    padding: 30px 20px;
}

.philosophy-card img {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
}

.philosophy-card h4 {
    margin-bottom: 15px;
}

.philosophy-card p {
    font-size: 0.95rem;
    color: #666;
}

.team {
    background: var(--color-off-white);
}

.team h2 {
    text-align: center;
    margin-bottom: 50px;
}

.team-grid {
    display: grid;
    gap: 30px;
}

.team-card {
    text-align: center;
    background: white;
    border-radius: 10px;
    padding: 30px 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all var(--transition-base);
}

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

.team-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
}

.team-card h4 {
    margin-bottom: 5px;
}

.team-card .title {
    font-size: 0.9rem;
    color: var(--color-sky-blue);
    margin-bottom: 15px;
}

.team-card p {
    font-size: 0.9rem;
    color: #666;
}

.values-statement {
    position: relative;
    padding: 100px 0;
    background: var(--color-charcoal);
    text-align: center;
    color: white;
}

.values-statement-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.values-statement-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.values-statement-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.values-statement blockquote {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.6;
}

.trust-signals {
    background: var(--color-off-white);
    text-align: center;
}

.trust-signals h2 {
    margin-bottom: 50px;
}

.trust-grid {
    display: grid;
    gap: 30px;
}

.trust-item {
    padding: 20px;
}

.trust-item .number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-sky-blue);
    margin-bottom: 10px;
}

.trust-item p {
    font-size: 1rem;
    color: #666;
}

/* Contact Page */
.contact-section {
    background: var(--color-off-white);
}

.contact-section .container {
    display: grid;
    gap: 50px;
}

.contact-form-wrapper h2 {
    margin-bottom: 30px;
}

.contact-form {
    display: grid;
    gap: 20px;
}

.contact-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color var(--transition-base);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-sky-blue);
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-image img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

.contact-info {
    background: var(--color-off-white);
}

.contact-info h2 {
    text-align: center;
    margin-bottom: 40px;
}

.contact-info-grid {
    display: grid;
    gap: 30px;
}

.contact-info-item {
    text-align: center;
    padding: 20px;
}

.contact-info-item img {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
}

.contact-info-item h4 {
    margin-bottom: 10px;
}

.contact-info-item p {
    color: #666;
    font-size: 0.95rem;
}

.contact-info-item a {
    color: var(--color-sky-blue);
}

.contact-map {
    background: var(--color-off-white);
}

.contact-map h2 {
    text-align: center;
    margin-bottom: 30px;
}

.map-container {
    width: 100%;
    height: 400px;
    background: #e0e0e0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Pulse Animation for CTA */
@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.4);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(255, 215, 0, 0);
    }
}

.btn-pulse {
    animation: pulse 2s infinite;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hero-content h1,
    .hero-content p,
    .hero-content .btn {
        opacity: 1;
        transform: none;
        animation: none;
    }
}

/* Tablet Breakpoint */
@media (min-width: 768px) {
    :root {
        --header-height: 75px;
    }
    
    h1 { font-size: 3rem; }
    h2 { font-size: 2.5rem; }
    
    .container {
        padding: 0 40px;
    }
    
    .section {
        padding: 80px 0;
    }
    
    .value-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .inspiration-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .philosophy-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .trust-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .contact-info-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Desktop Breakpoint */
@media (min-width: 1024px) {
    :root {
        --header-height: 80px;
    }
    
    h1 { font-size: 3.5rem; }
    h2 { font-size: 2.8rem; }
    
    .container {
        padding: 0 60px;
    }
    
    .section {
        padding: 100px 0;
    }
    
    .nav-desktop {
        display: flex;
        align-items: center;
    }
    
    .header-actions {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: none;
    }
    
    .mobile-menu {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .hero-content p {
        font-size: 1.25rem;
    }
    
    .why-choose-us .container {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
    
    .process-steps {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .process-step::after {
        content: '';
        position: absolute;
        top: 30px;
        right: -20px;
        width: 40px;
        height: 2px;
        background: var(--color-sky-blue);
        display: none;
    }
    
    .process-step:not(:last-child)::after {
        display: block;
    }
    
    .our-story .container {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
    
    .our-story-image img {
        height: 400px;
    }
    
    .philosophy-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .contact-section .container {
        grid-template-columns: 1fr 1fr;
    }
    
    .service-detail .container {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}

/* Very small screens */
@media (max-width: 374px) {
    .btn {
        padding: 10px 20px;
        font-size: 12px;
    }
    
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.5rem; }
}
