/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-red: #c8102e;
    --dark-red: #8b0000;
    --light-red: #e03e52;
    --black: #000000;
    --dark-gray: #1a1a1a;
    --gray: #333333;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --transition: all 0.3s ease;
    --shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.15);
    --border-radius: 20px;
    --border-width: 1px;
    --opacity-light: 0.08;
    --opacity-medium: 0.15;
    --promo-bar-height: 40px;
    --promo-bar-bg: #F2B94B;
    --promo-bar-text: #1F2933;
    --promo-bar-link: #2F80ED;
}

/* Promo Bar */
.promo-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--promo-bar-height);
    background-color: var(--promo-bar-bg);
    color: var(--promo-bar-text);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: env(safe-area-inset-top);
    height: calc(var(--promo-bar-height) + env(safe-area-inset-top));
}

.promo-content {
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.promo-desktop {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    justify-content: space-between;
}

.promo-mobile {
    display: none;
    width: 100%;
}

.promo-text {
    font-size: 14px;
    line-height: 1.4;
    color: var(--promo-bar-text);
    font-weight: 400;
}

.promo-link {
    color: var(--promo-bar-link);
    text-decoration: none;
    transition: opacity 0.2s ease;
    font-weight: 400;
}

.promo-link:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.promo-cta {
    background-color: var(--promo-bar-link);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: background-color 0.2s ease;
    white-space: nowrap;
}

.promo-cta:hover {
    background-color: #1e6bd8;
}

.promo-mobile .promo-segment {
    font-size: 12px;
    font-weight: 400;
    color: var(--promo-bar-text);
    text-align: center;
}

.promo-mobile {
    display: none;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.promo-left {
    flex: 0 1 auto;
    text-align: left;
}

.promo-center {
    flex: 1 1 auto;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.promo-right {
    flex: 0 1 auto;
    text-align: right;
    color: var(--promo-bar-link);
    text-decoration: none;
    white-space: nowrap;
}

.promo-right:hover {
    text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .promo-desktop {
        display: none;
    }
    
    .promo-mobile {
        display: flex;
    }
    
    .promo-content {
        padding: 0 12px;
    }
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--white);
    background-image: 
        radial-gradient(circle at 25px 25px, #e0e0e0 1px, transparent 1px),
        radial-gradient(circle at 75px 75px, #e0e0e0 1px, transparent 1px);
    background-size: 100px 100px;
    background-opacity: 0.08;
    padding-top: calc(var(--promo-bar-height) + env(safe-area-inset-top));
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: calc(var(--promo-bar-height) + env(safe-area-inset-top));
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: var(--transition);
    transform: translateY(0);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo {
    height: 50px;
    width: auto;
    transition: var(--transition);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--black);
    font-weight: 500;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-red);
}

.nav-link:hover::after {
    width: 100%;
    transform: translateY(2px);
}

.btn-nav {
    padding: 0.75rem 1.5rem;
    background: var(--primary-red);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid var(--primary-red);
}

.btn-nav:hover {
    background: var(--dark-red);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(200, 16, 46, 0.3);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--black);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 6rem 2rem 4rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    overflow: hidden;
    margin: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(200, 16, 46, 0.1) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 60%;
    height: 80%;
    background: radial-gradient(ellipse at center, rgba(224, 62, 82, 0.08) 0%, transparent 60%);
    animation: float 15s ease-in-out infinite reverse;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-main {
    animation: fadeInLeft 1s ease;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--black);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--gray);
    font-weight: 400;
}

.hero-text {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--primary-red);
    color: var(--white);
    border-color: var(--primary-red);
    box-shadow: 0 4px 15px rgba(200, 16, 46, 0.2);
}

.btn-primary:hover {
    background: var(--dark-red);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 10px 25px rgba(200, 16, 46, 0.3);
    border-color: var(--dark-red);
}

.btn-secondary {
    background: transparent;
    color: var(--black);
    border-color: var(--black);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    background: var(--black);
    color: var(--white);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-small {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
}

.hero-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.chip {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--white);
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--gray);
    box-shadow: var(--shadow);
    transition: var(--transition);
    animation: float 4s ease-in-out infinite;
    border: var(--border-width) solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.chip::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(200, 16, 46, 0.1), transparent);
    transition: left 0.5s ease;
}

.chip:hover::before {
    left: 100%;
}

.chip:nth-child(1) { animation-delay: 0s; }
.chip:nth-child(2) { animation-delay: 0.5s; }
.chip:nth-child(3) { animation-delay: 1s; }
.chip:nth-child(4) { animation-delay: 1.5s; }
.chip:nth-child(5) { animation-delay: 2s; }

.chip:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(200, 16, 46, 0.1);
}

.hero-visual {
    position: relative;
    animation: fadeInRight 1s ease;
}

.hero-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

/* Section Styles */
section {
    padding: 4rem 0;
    position: relative;
}

.trust-callout {
    font-size: 0.9rem;
    color: var(--gray);
    text-align: center;
    margin-top: 1rem;
    font-style: italic;
    opacity: 0.8;
}

.section-header {
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
}

.section-eyebrow {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-red);
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--black);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Why Section */
.why {
    background: var(--white);
    padding: 4rem 2rem;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.bento-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: var(--border-width) solid rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
}

.bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--light-red));
    transform: scaleX(0);
    transition: var(--transition);
}

.bento-card:hover::before {
    transform: scaleX(1);
}

.bento-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(200, 16, 46, 0.1);
}

.bento-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(200, 16, 46, 0.05) 0%, transparent 70%);
    transform: translate(0, 0) scale(0);
    transition: transform 0.6s ease;
}

.bento-card:hover::after {
    transform: translate(0, 0) scale(1);
}

.card-large {
    grid-column: span 2;
    grid-row: span 2;
}

.card-medium {
    grid-column: span 1;
    grid-row: span 1;
}

.card-testimonial {
    grid-column: span 2;
    grid-row: span 1;
    background: linear-gradient(135deg, var(--primary-red), var(--light-red));
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 3rem 2rem;
}

.bento-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-red);
}

.card-testimonial .testimonial-quote {
    font-size: 4rem;
    opacity: 0.3;
    margin-bottom: 1rem;
}

.card-testimonial .testimonial-text {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.card-testimonial .testimonial-author {
    font-size: 0.9rem;
    opacity: 0.8;
}

.bento-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--black);
}

.bento-card p {
    color: var(--gray);
    line-height: 1.7;
}

.mini-cta {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    position: relative;
    overflow: hidden;
    border: var(--border-width) solid rgba(200, 16, 46, 0.1);
}

.mini-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(200, 16, 46, 0.05) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

.mini-cta p {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Process Section */
.process {
    background: var(--light-gray);
    padding: 4rem 2rem;
}

.timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-red), var(--light-red));
}

.timeline-item {
    position: relative;
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--primary-red);
    border: 4px solid var(--white);
    border-radius: 50%;
    z-index: 1;
    box-shadow: 0 0 0 4px rgba(200, 16, 46, 0.1);
}

.timeline-content {
    width: calc(50% - 40px);
    padding: 2rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: var(--border-width) solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--light-red));
    transform: scaleX(0);
    transition: var(--transition);
}

.timeline-content:hover::before {
    transform: scaleX(1);
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(200, 16, 46, 0.1);
}

.timeline-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-red);
}

.timeline-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--black);
}

.timeline-content p {
    color: var(--gray);
    line-height: 1.6;
}

/* Services Section */
.services {
    background: var(--white);
    padding: 4rem 2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: var(--border-width) solid rgba(0, 0, 0, 0.05);
    position: relative;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--light-red));
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(200, 16, 46, 0.1);
}

.service-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--black);
}

.service-content p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex: 1;
}

.service-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.service-list li {
    padding: 0.5rem 1rem;
    background: var(--light-gray);
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--gray);
    transition: var(--transition);
}

.service-list li:hover {
    background: var(--primary-red);
    color: var(--white);
}

.services-cta {
    text-align: center;
    margin-top: 2rem;
}

/* Contact Section */
.contact-map {
    margin: 2rem 0;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.contact-schedule {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    border: var(--border-width) solid rgba(0, 0, 0, 0.05);
    margin-top: 1.5rem;
}

.contact-schedule .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.contact-schedule .contact-icon {
    font-size: 2rem;
    color: var(--primary-red);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.contact-schedule .contact-details h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--black);
}

.contact-schedule .contact-details p {
    color: var(--gray);
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Gallery Section */
.gallery {
    background: var(--light-gray);
    padding: 4rem 2rem;
}

.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 1rem;
    max-width: 1000px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: var(--transition);
    border: var(--border-width) solid rgba(0, 0, 0, 0.05);
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-hover);
    border-color: rgba(200, 16, 46, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--white);
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay p {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

/* Team Section */
.team {
    background: var(--white);
    padding: 4rem 2rem;
}

.team-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto 2rem;
}

.team-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: var(--border-width) solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--light-red));
    transform: scaleX(0);
    transition: var(--transition);
}

.team-card:hover::before {
    transform: scaleX(1);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(200, 16, 46, 0.1);
}

.team-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-red);
    position: relative;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--black);
}

.team-specialty {
    color: var(--primary-red);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.team-approach {
    color: var(--gray);
    line-height: 1.6;
    font-style: italic;
}

.team-values {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.value-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem 1.5rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: var(--border-width) solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    text-align: center;
    min-height: 180px;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(200, 16, 46, 0.1);
}

.value-icon {
    width: 48px;
    height: 48px;
    color: var(--primary-red);
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon svg {
    width: 100%;
    height: 100%;
}

.value-item p {
    color: var(--gray);
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 1.5;
    margin: 0;
}

/* Contact Section */
.contact {
    background: var(--light-gray);
    padding: 4rem 2rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-icon {
    font-size: 2rem;
    color: var(--primary-red);
    margin-top: 0.25rem;
}

.contact-details h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--black);
}

.contact-details p {
    color: var(--gray);
    line-height: 1.6;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.form-microcopy {
    text-align: center;
    font-size: 0.85rem;
    color: var(--gray);
    margin-top: 1rem;
}

/* Footer */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 2.5rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 0 1rem;
}

.footer-brand .footer-logo {
    height: 80px;
    margin-bottom: 1rem;
    width: auto;
}

.footer-brand p {
    color: #cccccc;
}

.footer-links h4,
.footer-social h4 {
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-red);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: var(--gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.2rem;
}

.social-icon:hover {
    background: var(--primary-red);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid var(--gray);
    padding-top: 1rem;
    text-align: center;
    color: #cccccc;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.footer-powered-by {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #cccccc;
}

.sky-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.sky-link:hover {
    opacity: 0.8;
}

.sky-logo {
    height: 20px;
    width: auto;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.sky-logo:hover {
    filter: grayscale(0%);
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
    }
    25% {
        transform: translateY(-10px) translateX(5px);
    }
    50% {
        transform: translateY(-15px) translateX(0px);
    }
    75% {
        transform: translateY(-10px) translateX(-5px);
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer {
        padding: 1.5rem 0 0.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand h3 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .footer-links,
    .footer-social {
        margin-top: 1.5rem;
    }
    
    .footer-bottom {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
    
    .sky-logo {
        height: 16px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .btn-nav {
        display: none;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 0.5rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .hero-text {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }

    .hero-buttons .btn {
        width: 180px;
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
    }

    .hero-chips {
        justify-content: center;
        gap: 0.8rem;
    }

    .chip {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }

    .hero-trust-microcopy {
        font-size: 0.85rem;
        margin-top: 1rem;
    }

    .hero-visual {
        order: -1;
    }

    .hero-image img {
        height: 250px;
        object-fit: cover;
    }

    .bento-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .bento-card {
        grid-column: span 1;
        grid-row: span 1;
    }

    .timeline::before {
        left: 0;
    }

    .timeline-item {
        flex-direction: row !important;
    }

    .timeline-marker {
        left: 0;
    }

    .timeline-content {
        width: 100%;
        margin-left: 40px;
    }

    .gallery-masonry {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        grid-column: span 1;
        grid-row: span 1;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .team-values {
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .nav {
        padding: 1rem;
    }

    .nav-brand .logo {
        height: 50px;
    }

    .hero {
        padding: 6rem 1rem 3rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn {
        padding: 0.875rem 2rem;
        font-size: 0.9rem;
    }

    section {
        padding: 3rem 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .bento-card {
        padding: 1.5rem;
    }

    .bento-grid {
        gap: 1rem;
    }

    .timeline-content {
        padding: 1.5rem;
        margin-left: 30px;
    }

    .services-grid {
        gap: 1rem;
    }

    .service-card {
        padding: 1rem;
    }

    .service-image {
        height: 150px;
    }

    .service-content {
        padding: 1.5rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }
}