/* Reset & Base Styles */
:root {
    --primary-color: #F5EDE4; /* Soft Beige */
    --accent-color: #C9A96E; /* Gold */
    --accent-hover: #b3945c;
    --dark-bg: #111111;
    --section-contrast: #1A1A1A;
    --light-bg: #FFFFFF;
    --text-color: #1A1A1A;
    --text-light: #555555;
    --bg-color: var(--light-bg);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --radius: 6px;
    --shadow: none; /* Luxury uses borders, not shadows */
    --shadow-hover: 0 10px 30px rgba(0, 0, 0, 0.08); /* Minimal shadow for interaction */
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-color);
    line-height: 1.2;
}

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

ul {
    list-style: none;
}

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

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

.section-padding {
    padding: 8rem 0;
}

.bg-light {
    background-color: var(--primary-color);
}

.text-center {
    text-align: center;
}

.mt-3 {
    margin-top: 1rem;
}

/* Typography Utility */
.section-title {
    margin-bottom: 3rem;
}
.section-title .subtitle {
    display: block;
    font-family: var(--font-body);
    color: var(--accent-color);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}
.section-title h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}
.title-line {
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
    border-radius: 2px;
}
.title-line.center {
    margin: 0 auto;
}

/* Specific Section Padding */
.services { padding-top: 6rem; }
.why-us { padding: 10rem 0; }
.pricing { padding: 7rem 0; }
.testimonials { padding: 10rem 0; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1rem;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    gap: 0.5rem;
}

.btn-primary {
    background-color: var(--text-color);
    color: var(--primary-color);
}
.btn-primary:hover {
    background-color: var(--accent-color);
    color: #fff;
    transform: translateY(-2px);
    border-color: var(--accent-color);
}

.btn-secondary {
    background-color: var(--accent-color);
    color: #fff;
}
.btn-secondary:hover {
    background-color: var(--text-color);
    transform: translateY(-2px);
    border-color: var(--text-color);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--text-color);
    color: var(--text-color);
}
.btn-outline:hover {
    background-color: var(--text-color);
    color: var(--primary-color);
}

.btn-full {
    width: 100%;
}

.btn-whatsapp {
    background-color: #25D366;
    color: #fff;
}
.btn-whatsapp:hover {
    background-color: #1ebe57;
    transform: translateY(-2px);
}

/* Loader */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.6s ease;
}
.loader-text {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-color);
    letter-spacing: 4px;
    animation: pulse 1.5s infinite alternate;
}
@keyframes pulse {
    0% { opacity: 0.5; transform: scale(0.98); }
    100% { opacity: 1; transform: scale(1.02); }
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    z-index: 100;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    animation: bounce 2s infinite;
}
.floating-whatsapp:hover {
    transform: scale(1.1);
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    transition: var(--transition);
}
.header.scrolled {
    background: rgba(255, 255, 255, 0.85); /* Slightly more transparent */
    backdrop-filter: blur(12px); /* Glass Blur */
    -webkit-backdrop-filter: blur(12px);
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-color);
    letter-spacing: 1px;
}
.logo span {
    color: var(--accent-color);
}
.header:not(.scrolled) .logo,
.header:not(.scrolled) .nav-link {
    color: #fff;
}
.header:not(.scrolled) .logo span {
    color: var(--accent-color);
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-list {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-weight: 500;
    color: var(--text-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}
.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-color);
}
.header:not(.scrolled) .nav-toggle {
    color: #fff;
}
.header:not(.scrolled) .btn-outline {
    border-color: #fff;
    color: #fff;
}
.header:not(.scrolled) .btn-outline:hover {
    background-color: #fff;
    color: var(--text-color);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding-top: 5rem;
    justify-content: flex-start;
}

.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(
        120deg,
        rgba(0,0,0,0.9) 20%,
        rgba(0,0,0,0.4) 60%,
        transparent 100%
    );
}

.hero-content {
    max-width: 700px;
    color: #fff;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    padding: 2rem;
    border-radius: var(--radius);
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 1.5rem;
}
.trust-badge .stars {
    color: var(--accent-color);
    font-size: 0.875rem;
}
.trust-badge span {
    font-size: 0.85rem;
    font-weight: 500;
}

.hero-title {
    font-size: 5rem;
    margin-bottom: 1rem;
    color: #fff;
    line-height: 1.05;
    letter-spacing: -1px;
}
.hero-title span {
    color: var(--primary-color);
    font-style: italic;
    display: block;
}

.hero-subtitle {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: rgba(255,255,255,0.9);
    max-width: 550px;
}

.hero-urgency {
    color: var(--accent-color);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0,0,0,0.3);
    padding: 0.5rem 1rem;
    border-radius: 0;
    display: inline-flex;
    margin-bottom: 2rem;
    animation: flash 2s infinite alternate;
}

@keyframes flash {
    0% { opacity: 0.8; }
    100% { opacity: 1; text-shadow: 0 0 10px rgba(201,169,110,0.5); }
}

.hero-btns {
    display: flex;
    gap: 1rem;
}

/* Social Proof Strip */
.social-proof {
    background-color: var(--primary-color);
    padding: 2rem 0;
    border-bottom: 1px solid rgba(201, 169, 110, 0.2);
}
.sc-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.sc-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.95rem;
}
.sc-item i {
    color: var(--accent-color);
    font-size: 1.25rem;
}

/* Offer Section */
.offer-section {
    position: relative;
    margin-top: -30px;
    z-index: 10;
}
.offer-banner {
    background: var(--text-color);
    color: #fff;
    border-radius: var(--radius);
    padding: 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 0;
    flex-wrap: wrap;
    gap: 2rem;
    border: 1px solid rgba(201, 169, 110, 0.3);
}
.offer-content h2 {
    color: var(--accent-color);
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}
.offer-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
}
.offer-banner .btn-primary {
    background: var(--accent-color);
    color: #fff;
}
.offer-banner .btn-primary:hover {
    background: #fff;
    color: var(--text-color);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: transparent;
    border: none;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    transition: var(--transition);
    border-bottom: 1px solid rgba(0,0,0,0.1);
    position: relative;
}
/* Luxury Magazine Style Hover */
.service-card:hover {
    transform: translateY(-5px);
}

.service-img {
    height: 250px;
    overflow: hidden;
    position: relative;
}
.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.service-card:hover .service-img img {
    transform: scale(1.08);
}
.service-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: inset 0 0 0 0 var(--accent-color);
    transition: var(--transition);
    border-radius: var(--radius) var(--radius) 0 0;
    pointer-events: none;
}
.service-card:hover .service-img::after {
    box-shadow: inset 0 0 0 4px var(--accent-color);
}

.service-content {
    padding: 1.5rem;
}
.service-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}
.service-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}
.service-price {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 600;
}

.guarantee-text {
    font-weight: 500;
    color: var(--text-color);
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--primary-color);
    border-radius: 0;
    border: 1px solid rgba(201,169,110,0.3);
}
.guarantee-text i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

/* Meet The Artist (Founder section) */
.founder-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.founder-img {
    position: relative;
    border-radius: var(--radius);
    border-top-left-radius: 100px;
    border-bottom-right-radius: 100px;
    overflow: hidden;
    box-shadow: var(--shadow);
}
.founder-img img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
}
.founder-badge {
    position: absolute;
    bottom: 30px;
    left: -20px;
    background: var(--accent-color);
    color: #fff;
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-hover);
    transform: rotate(-5deg);
}
.founder-badge span {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
}
.founder-badge small {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
}
.founder-content p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    color: var(--text-light);
}
.founder-content p:nth-of-type(2) {
    font-style: italic;
    font-size: 1.15rem;
    color: var(--text-color);
    border-left: 3px solid var(--accent-color);
    padding-left: 1.5rem;
}
.founder-sign {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 2rem;
    margin-top: 2rem;
    color: var(--text-color);
}
.founder-role {
    font-size: 0.9rem !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color) !important;
    margin-top: 0 !important;
}

/* Why Us Dark Theme */
.why-us {
    background: var(--dark-bg);
    color: #fff;
}
.why-us .section-title h2 { color: #fff; }
.why-us .feature-box {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
}
.why-us .feature-box p { color: rgba(255,255,255,0.7); }
.why-us .feature-icon { background: rgba(255,255,255,0.05); }

/* Why Us Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}
.feature-box {
    background: var(--bg-color);
    padding: 2.5rem 1.5rem;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.1);
}
.feature-box:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
}
.feature-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.75rem;
    color: var(--accent-color);
    transition: var(--transition);
}
.feature-box:hover .feature-icon {
    background-color: var(--accent-color);
    color: #fff;
    transform: scale(1.1);
}
.feature-box h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}
.feature-box p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Before / After Slider */
.ba-slider-container {
    max-width: 800px;
    margin: 0 auto;
}
.ba-slider {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: none;
    border: 1px solid rgba(0,0,0,0.08);
    cursor: ew-resize; /* Indicates resizable horizontally */
}
.ba-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.ba-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.ba-before {
    z-index: 1;
}
.ba-after {
    z-index: 2;
    width: 50%; /* Initial split at 50% */
}
.ba-label {
    position: absolute;
    top: 20px;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(5px);
    padding: 0.5rem 1rem;
    border-radius: 0;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 5;
    pointer-events: none;
}
.label-before { right: 20px; }
.label-after { left: 20px; }

.ba-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background-color: #fff;
    z-index: 3;
    pointer-events: none; /* Let mouse events pass to container */
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}
.ba-handle-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--accent-color);
    font-size: 1.2rem;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
}

/* Pricing Strategy */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: center;
}
.pricing-card {
    background: var(--bg-color);
    padding: 3rem 2rem;
    border-radius: 0;
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(0,0,0,0.08); /* Luxury Border */
}
.pricing-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
}
.pricing-card.popular {
    background: var(--dark-bg);
    color: #fff;
    transform: scale(1.05);
    border-color: var(--accent-color);
}
.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-5px);
}
.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 0;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1px;
}
.p-header {
    text-align: center;
    margin-bottom: 2rem;
}
.pricing-card.popular h3 {
    color: #fff;
}
.p-header h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}
.p-header p {
    color: var(--text-light);
    font-size: 0.95rem;
}
.pricing-card.popular .p-header p {
    color: rgba(255,255,255,0.7);
}
.p-price {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--accent-color);
}
.p-price span {
    font-size: 1.5rem;
    vertical-align: super;
}
.p-features {
    margin-bottom: 2.5rem;
}
.p-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}
.p-features li i {
    color: var(--accent-color);
}
.p-features li.disabled {
    color: var(--text-light);
    text-decoration: line-through;
}
.p-features li.disabled i {
    color: #ccc;
}
.pricing-card.popular .p-features li.disabled {
    color: rgba(255,255,255,0.4);
}
.pricing-card.popular .p-features li.disabled i {
    color: rgba(255,255,255,0.3);
}

/* Testimonials Dark Theme */
.testimonials {
    background: var(--section-contrast);
    color: #fff;
}
.testimonials .section-title h2 { color: #fff; }
.testimo-card {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 2rem;
    transition: var(--transition);
}
.testimo-text { color: rgba(255,255,255,0.9); }
.testimo-user h4 { color: #fff; }
.testimo-user span { color: var(--accent-color); }

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.testimo-card {
    padding: 2.5rem;
    border-radius: 0;
    background-color: transparent;
    border: 1px solid rgba(255,255,255,0.1);
}
.testimo-stars {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}
.testimo-text {
    font-style: italic;
    font-size: 1.05rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}
.testimo-user {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 1.5rem;
}
.user-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}
.testimo-user h4 {
    font-size: 1rem;
    margin-bottom: 0.1rem;
}
.testimo-user span {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Booking CTA */
.booking-cta {
    background: var(--text-color);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.b-cta-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.b-cta-content h2 {
    color: #fff;
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}
.urgency {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
}
.b-cta-content p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}
.b-cta-btns {
    display: flex;
    gap: 1rem;
}
.b-cta-form {
    background: transparent;
    padding: 3rem;
    border-radius: 0;
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
}
.b-cta-form h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}
.form-group {
    margin-bottom: 1.5rem;
}
.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
    border-radius: 0;
    font-family: var(--font-body);
    font-size: 1rem;
    color: #fff;
    transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(255,255,255,0.1);
}

/* Instagram Feed */
.ig-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.ig-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1/1;
    display: block;
}
.ig-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.ig-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(201, 169, 110, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2.5rem;
    opacity: 0;
    transition: var(--transition);
}
.ig-item:hover img {
    transform: scale(1.1);
}
.ig-item:hover .ig-overlay {
    opacity: 1;
}

/* Footer & Map */
.map-section iframe {
    pointer-events: none; /* prevent scrolling interruption on initial scroll */
}
.map-section:hover iframe {
    pointer-events: auto;
}

.footer {
    background-color: #111;
    color: #fff;
    padding: 5rem 0 2rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}
.footer-brand .logo {
    color: #fff;
    margin-bottom: 1.5rem;
    display: inline-block;
}
.footer-brand p {
    color: rgba(255,255,255,0.6);
    margin-bottom: 2rem;
}
.social-icons {
    display: flex;
    gap: 1rem;
}
.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.social-icons a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}
.footer h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: #fff;
}
.footer ul li {
    margin-bottom: 1rem;
    color: rgba(255,255,255,0.6);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}
.footer ul li i {
    margin-top: 5px;
    color: var(--accent-color);
}
.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}
.footer-hours span {
    display: block;
    color: #fff;
    margin-bottom: 0.25rem;
}
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .pricing-card.popular {
        transform: scale(1);
    }
    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }
    .hero-title {
        font-size: 3.5rem;
    }
    .b-cta-wrapper {
        gap: 2rem;
    }
    .founder-wrapper {
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--light-bg);
        flex-direction: column;
        justify-content: center;
        padding: 2rem;
        border-left: 1px solid rgba(0,0,0,0.08);
        transition: var(--transition);
        z-index: 999;
    }
    .nav.active {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        text-align: center;
        margin-bottom: 2rem;
    }
    .nav-link {
        color: var(--text-color) !important;
        font-size: 1.1rem;
    }
    .nav-toggle {
        display: block;
        z-index: 1000;
    }
    
    .hero {
        padding-top: 8rem;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-btns {
        flex-direction: column;
    }
    .sc-container {
        flex-direction: column;
        text-align: center;
    }
    .offer-banner {
        flex-direction: column;
        text-align: center;
    }
    .founder-wrapper {
        grid-template-columns: 1fr;
    }
    .founder-img {
        max-width: 400px;
        margin: 0 auto;
    }
    .founder-badge {
        left: -10px;
        bottom: 20px;
    }
    .b-cta-wrapper {
        grid-template-columns: 1fr;
    }
    .b-cta-content {
        text-align: center;
    }
    .b-cta-btns {
        justify-content: center;
        flex-direction: column;
    }
    .ig-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .ba-slider {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .transform-grid {
        grid-template-columns: 1fr;
    }
    .ba-slider {
        height: 250px;
    }
}
