@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    --primary-orange: #E67E22;
    --primary-orange-dark: #D35400;
    --electric-blue: #00D4FF;
    --electric-blue-dark: #0099CC;
    --warm-cream: #FDF6E3;
    --warm-beige: #F5E6D3;
    --earth-brown: #5D4E37;
    --earth-brown-dark: #3D2E1F;
    --charcoal: #2C3E50;
    --soft-white: #FFFFFF;
    --light-gray: #ECF0F1;
    --text-dark: #1A1A1A;
    --text-light: #F8F9FA;
    --success-green: #27AE60;
    --warning-yellow: #F1C40F;
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-strong: 0 15px 50px rgba(0, 0, 0, 0.18);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 20px;
    --border-radius-xl: 30px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--soft-white);
    overflow-x: hidden;
}

strong, b, p {
    color: inherit;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    color: inherit;
}

a {
    color: var(--primary-orange);
    text-decoration: none;
    transition: var(--transition-smooth);
}

a:hover {
    color: var(--primary-orange-dark);
}

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

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 15px;
    border-radius: var(--border-radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition-smooth);
    white-space: nowrap;
    min-height: 52px;
    gap: 10px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-dark));
    color: var(--soft-white);
    border-color: var(--primary-orange);
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.35);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-orange-dark), var(--primary-orange));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(230, 126, 34, 0.45);
    color: var(--soft-white);
}

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

.btn-secondary:hover {
    background: var(--soft-white);
    color: var(--charcoal);
}

.btn-accent {
    background: linear-gradient(135deg, var(--electric-blue), var(--electric-blue-dark));
    color: var(--soft-white);
    border-color: var(--electric-blue);
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.35);
}

.btn-accent:hover {
    background: linear-gradient(135deg, var(--electric-blue-dark), var(--electric-blue));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.45);
    color: var(--soft-white);
}

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

.btn-dark:hover {
    background: var(--earth-brown-dark);
    border-color: var(--earth-brown-dark);
    color: var(--soft-white);
}

.section {
    padding: 100px 0;
    position: relative;
}

.section-dark {
    background: var(--charcoal);
    color: var(--text-light);
}

.section-cream {
    background: var(--warm-cream);
    color: var(--text-dark);
}

.section-beige {
    background: var(--warm-beige);
    color: var(--text-dark);
}

.section-light {
    background: var(--soft-white);
    color: var(--text-dark);
}

.section-orange-accent {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-dark));
    color: var(--soft-white);
}

.section-blue-accent {
    background: linear-gradient(135deg, var(--electric-blue), var(--electric-blue-dark));
    color: var(--soft-white);
}

.section-heading {
    text-align: center;
    margin-bottom: 60px;
}

.section-heading.left {
    text-align: left;
}

.section-heading h2 {
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 20px;
    color: inherit;
}

.section-heading p {
    font-size: 18px;
    max-width: 650px;
    margin: 0 auto;
    opacity: 0.9;
    color: inherit;
}

.section-heading.left p {
    margin: 0;
}

.section-heading .accent-line {
    width: 80px;
    height: 4px;
    background: var(--primary-orange);
    margin: 20px auto 0;
    border-radius: 2px;
}

.section-heading.left .accent-line {
    margin: 20px 0 0;
}

.card {
    background: var(--soft-white);
    border-radius: var(--border-radius-lg);
    padding: 40px 30px;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
}

.card-dark {
    background: var(--charcoal);
    color: var(--text-light);
}

.card-dark:hover {
    background: var(--earth-brown-dark);
}

.card-orange {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-dark));
    color: var(--soft-white);
}

.card-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-light);
}

.card-glass:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-8px);
}

.service-card {
    position: relative;
    overflow: hidden;
}

.service-card .card-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-dark));
    border-radius: var(--border-radius-md);
    margin-bottom: 25px;
    font-size: 32px;
    color: var(--soft-white);
    transition: var(--transition-smooth);
}

.service-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: inherit;
}

.service-card p {
    font-size: 15px;
    margin-bottom: 20px;
    color: inherit;
    opacity: 0.9;
}

.service-card .price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-orange);
    font-family: 'Outfit', sans-serif;
}

.service-card-dark .price {
    color: var(--electric-blue);
}

.service-card .card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--primary-orange);
    margin-top: 15px;
}

.service-card .card-link:hover {
    gap: 15px;
}

.service-card-dark .card-link {
    color: var(--electric-blue);
}

.feature-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: var(--soft-white);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.feature-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-medium);
}

.feature-card .feature-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--electric-blue), var(--electric-blue-dark));
    border-radius: var(--border-radius-sm);
    font-size: 26px;
    color: var(--soft-white);
}

.feature-card .feature-content h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--charcoal);
}

.feature-card .feature-content p {
    font-size: 15px;
    color: #666;
    margin: 0;
}

.team-card {
    text-align: center;
    padding: 50px 30px;
}

.team-card .team-photo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    margin: 0 auto 25px;
    object-fit: cover;
    border: 4px solid var(--primary-orange);
    transition: var(--transition-smooth);
}

.team-card:hover .team-photo {
    transform: scale(1.05);
    border-color: var(--electric-blue);
}

.team-card h4 {
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--charcoal);
}

.team-card .team-role {
    font-size: 14px;
    color: var(--primary-orange);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.team-card p {
    font-size: 15px;
    color: #666;
}

.review-card {
    padding: 35px;
    background: var(--soft-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-soft);
    position: relative;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 25px;
    font-size: 80px;
    color: var(--primary-orange);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.review-card .reviewer {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.review-card .reviewer-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.review-card .reviewer-info h5 {
    font-size: 17px;
    color: var(--charcoal);
    margin-bottom: 3px;
}

.review-card .reviewer-info span {
    font-size: 14px;
    color: #888;
}

.review-card .review-text {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    font-style: italic;
}

.review-card .stars {
    color: var(--warning-yellow);
    font-size: 18px;
    margin-bottom: 15px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-md);
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.gallery-item .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    opacity: 0;
    transition: var(--transition-smooth);
    display: flex;
    align-items: flex-end;
    padding: 25px;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.gallery-item .overlay span {
    color: var(--soft-white);
    font-weight: 600;
    font-size: 16px;
}

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--charcoal);
    transition: var(--transition-smooth);
}

.faq-question:hover {
    color: var(--primary-orange);
}

.faq-question .icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: var(--transition-smooth);
    color: var(--primary-orange);
}

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


.section-dark .faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.section-dark .faq-question {
    color: var(--light-gray);
}

.section-dark .faq-question:hover {
    color: var(--primary-orange);
}


.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.faq-answer p {
    padding-bottom: 25px;
    color: #555;
    font-size: 16px;
}

.section-dark .faq-answer p {
    color: var(--light-gray);
}

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

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--charcoal);
    font-size: 15px;
}

.form-control {
    width: 100%;
    padding: 16px 20px;
    font-size: 16px;
    border: 2px solid #E0E0E0;
    border-radius: var(--border-radius-sm);
    background: var(--soft-white);
    transition: var(--transition-smooth);
    font-family: inherit;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 4px rgba(230, 126, 34, 0.1);
}

.form-control::placeholder {
    color: #999;
}

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

.form-dark .form-control {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--soft-white);
}

.form-dark .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-dark label {
    color: var(--soft-white);
}

.contact-info-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: var(--soft-white);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.contact-info-card .info-icon {
    width: 55px;
    height: 55px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-dark));
    border-radius: var(--border-radius-sm);
    font-size: 22px;
    color: var(--soft-white);
}

.contact-info-card .info-content h4 {
    font-size: 18px;
    color: var(--charcoal);
    margin-bottom: 5px;
}

.contact-info-card .info-content p {
    font-size: 15px;
    color: #666;
    margin: 0;
}

.contact-info-card .info-content a {
    color: inherit;
}

.contact-info-card .info-content a:hover {
    color: var(--primary-orange);
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.header.scrolled {
    background: var(--soft-white);
    box-shadow: var(--shadow-medium);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--charcoal);
    text-decoration: none;
}

.logo-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-dark));
    border-radius: var(--border-radius-sm);
    font-size: 22px;
    color: var(--soft-white);
}

.logo:hover {
    color: var(--charcoal);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--charcoal);
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-orange);
    transition: var(--transition-smooth);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-orange);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

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

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: var(--charcoal);
    transition: var(--transition-smooth);
}

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

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

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

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--earth-brown-dark) 100%);
}

.hero-background::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(230, 126, 34, 0.15), transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-xl);
    color: var(--soft-white);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 25px;
}

.hero-badge .badge-dot {
    width: 8px;
    height: 8px;
    background: var(--success-green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-title {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 800;
    color: var(--soft-white);
    margin-bottom: 25px;
    line-height: 1.1;
}

.hero-title span {
    color: var(--primary-orange);
}

.hero-subtitle {
    font-size: clamp(18px, 2.5vw, 22px);
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.hero-stats {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: left;
}

.hero-stat .number {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-orange);
    font-family: 'Outfit', sans-serif;
    line-height: 1;
}

.hero-stat .label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 5px;
}

.hero-image-container {
    position: relative;
}

.hero-image {
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-strong);
}

.hero-floating-card {
    position: absolute;
    background: var(--soft-white);
    border-radius: var(--border-radius-md);
    padding: 20px 25px;
    box-shadow: var(--shadow-strong);
    animation: float 3s ease-in-out infinite;
}

.hero-floating-card.card-1 {
    top: 10%;
    left: -30px;
}

.hero-floating-card.card-2 {
    bottom: 20%;
    right: -20px;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-floating-card .card-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--electric-blue), var(--electric-blue-dark));
    border-radius: var(--border-radius-sm);
    font-size: 20px;
    color: var(--soft-white);
    margin-bottom: 10px;
}

.hero-floating-card h5 {
    font-size: 16px;
    color: var(--charcoal);
    margin-bottom: 3px;
}

.hero-floating-card p {
    font-size: 13px;
    color: #888;
    margin: 0;
}

.page-hero {
    padding: 150px 0 80px;
    min-height: auto;
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--earth-brown-dark) 100%);
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a:hover {
    color: var(--primary-orange);
}

.breadcrumb span {
    color: var(--soft-white);
}

.footer {
    background: var(--charcoal);
    color: var(--text-light);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-brand p {
    margin: 20px 0 25px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-sm);
    color: var(--soft-white);
    font-size: 18px;
    transition: var(--transition-smooth);
}

.social-link:hover {
    background: var(--primary-orange);
    color: var(--soft-white);
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--soft-white);
}

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

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

.footer-links a {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
    color: var(--primary-orange);
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-contact-item .icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-sm);
    font-size: 16px;
    color: var(--primary-orange);
    flex-shrink: 0;
}

.footer-contact-item .content p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer-contact-item .content a {
    color: inherit;
}

.footer-contact-item .content a:hover {
    color: var(--primary-orange);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-legal a:hover {
    color: var(--primary-orange);
}

.cookie-consent-banner {
    position: fixed;
    bottom: 30px;
    left: 30px;
    right: 30px;
    max-width: 450px;
    background: var(--soft-white);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-strong);
    z-index: 9999;
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from { transform: translateY(100px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.cookie-consent-banner h4 {
    font-size: 18px;
    color: var(--charcoal);
    margin-bottom: 10px;
}

.cookie-consent-banner p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-btn {
    flex: 1;
    min-width: 120px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: var(--transition-smooth);
    text-align: center;
}

.cookie-btn.accept {
    background: var(--primary-orange);
    color: var(--soft-white);
    border: none;
}

.cookie-btn.accept:hover {
    background: var(--primary-orange-dark);
}

.cookie-btn.decline {
    background: transparent;
    color: #888;
    border: 2px solid #E0E0E0;
}

.cookie-btn.decline:hover {
    border-color: #888;
    color: var(--charcoal);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

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

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    position: relative;
}

.process-step {
    text-align: center;
    padding: 40px 30px;
    position: relative;
}

.process-step .step-number {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-dark));
    color: var(--soft-white);
    font-size: 24px;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    border-radius: 50%;
    margin: 0 auto 25px;
    position: relative;
    z-index: 2;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 60px;
    right: -15px;
    width: 30px;
    height: 2px;
    background: var(--primary-orange);
    opacity: 0.3;
}

.process-step:last-child::after {
    display: none;
}

.process-step h4 {
    font-size: 20px;
    color: inherit;
    margin-bottom: 15px;
}

.process-step p {
    font-size: 15px;
    color: inherit;
    opacity: 0.85;
}

.pricing-card {
    background: var(--soft-white);
    border-radius: var(--border-radius-lg);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.pricing-card.featured {
    transform: scale(1.05);
    border: 3px solid var(--primary-orange);
}

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

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.pricing-card .popular-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--primary-orange);
    color: var(--soft-white);
    padding: 5px 40px;
    font-size: 12px;
    font-weight: 600;
    transform: rotate(45deg);
}

.pricing-card h4 {
    font-size: 22px;
    color: var(--charcoal);
    margin-bottom: 10px;
}

.pricing-card .price {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-orange);
    font-family: 'Outfit', sans-serif;
    margin-bottom: 5px;
}

.pricing-card .price span {
    font-size: 16px;
    color: #888;
    font-weight: 400;
}

.pricing-card .description {
    font-size: 14px;
    color: #888;
    margin-bottom: 30px;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    font-size: 15px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-features li::before {
    content: '✓';
    color: var(--success-green);
    font-weight: 700;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--earth-brown-dark) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(230, 126, 34, 0.2), transparent 50%);
}

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

.cta-content h2 {
    font-size: clamp(32px, 5vw, 48px);
    color: var(--soft-white);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 35px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.alert {
    padding: 20px 25px;
    border-radius: var(--border-radius-sm);
    margin-bottom: 25px;
    font-size: 16px;
}

.alert-success {
    background: rgba(39, 174, 96, 0.1);
    border: 1px solid var(--success-green);
    color: var(--success-green);
}

.alert-error {
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid #E74C3C;
    color: #E74C3C;
}

.hidden {
    display: none !important;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-image-container {
        margin-top: 50px;
    }
    
    .hero-floating-card.card-1 {
        left: 10px;
    }
    
    .hero-floating-card.card-2 {
        right: 10px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 70px 0;
    }
    
    .main-nav {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--soft-white);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        box-shadow: var(--shadow-medium);
        transform: translateY(-150%);
        opacity: 0;
        transition: var(--transition-smooth);
    }
    
    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .header-actions {
        display: none;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .hero-stat .number {
        font-size: 32px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }
    
    .cookie-consent-banner {
        left: 15px;
        right: 15px;
        bottom: 15px;
    }
    
    .process-step::after {
        display: none;
    }
    
    .process-steps {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero-stat {
        text-align: center;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
    }
}
