/* ========================================
   DESIGNAGE - PREMIUM LANDING PAGE STYLES
   Color Palette: #FECC09, #EC6A5C, #FFFBE9, #FDF7F7
   ======================================== */

/* CSS Variables */
:root {
    --primary: #EC6A5C;
    --primary-hover: #d85a4c;
    --secondary: #FECC09;
    --secondary-hover: #e5b808;
    --background: #FFFBE9;
    --background-alt: #FDF7F7;
    --dark: #2D2A26;
    --text: #3D3A36;
    --text-light: #6B6660;
    --white: #FFFFFF;
    --border: rgba(236, 106, 92, 0.15);
    
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --shadow-primary: 0 4px 20px rgba(236, 106, 92, 0.3);
    
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;
    --radius-full: 9999px;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--background);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
}

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

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

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn svg {
    width: 18px;
    height: 18px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(236, 106, 92, 0.4);
}

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

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.section-tag-gold {
    color: var(--secondary);
}

.section-title {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

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

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 251, 233, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

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

.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.logo-text h1 {
    font-size: 1.25rem;
    margin: 0;
}

.logo-text span {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-light);
}

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

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

.nav-desktop a:not(.btn) {
    font-weight: 600;
    color: var(--text);
    position: relative;
}

.nav-desktop a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.nav-desktop a:not(.btn):hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    border-radius: var(--radius-md);
}

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

.mobile-menu-btn svg {
    width: 24px;
    height: 24px;
    color: var(--dark);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    padding: 1rem 1.5rem 1.5rem;
    background: var(--background);
    border-top: 1px solid var(--border);
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    padding: 0.75rem 0;
    font-weight: 600;
    color: var(--dark);
    border-bottom: 1px solid var(--border);
}

.mobile-menu a:last-child {
    border-bottom: none;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
    overflow: hidden;
    background: var(--background);
}

.hero-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    top: 10%;
    left: 5%;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    opacity: 0.4;
    animation-delay: 0s;
}

.shape-2 {
    top: 20%;
    right: 10%;
    width: 60px;
    height: 60px;
    background: var(--secondary);
    opacity: 0.3;
    border-radius: var(--radius-lg);
    animation-delay: 1s;
}

.shape-3 {
    bottom: 30%;
    left: 15%;
    width: 50px;
    height: 50px;
    background: var(--primary);
    opacity: 0.25;
    animation-delay: 2s;
}

.shape-4 {
    top: 35%;
    right: 25%;
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, rgba(254, 204, 9, 0.3), rgba(236, 106, 92, 0.3));
    border-radius: var(--radius-xl);
    opacity: 0.2;
    animation-delay: 0.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(3deg); }
    50% { transform: translateY(-20px) rotate(0deg); }
    75% { transform: translateY(-10px) rotate(-3deg); }
}

.hero-bg-gradient {
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(254, 204, 9, 0.4), transparent 70%);
    filter: blur(80px);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.1); opacity: 0.6; }
}

.hero-content {
    position: relative;
    z-index: 10;
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(236, 106, 92, 0.15);
    border: 1px solid rgba(236, 106, 92, 0.3);
    border-radius: var(--radius-full);
    margin-bottom: 1.5rem;
}

.hero-badge svg {
    width: 14px;
    height: 14px;
    color: var(--primary);
}

.hero-badge span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
}

.hero-title {
    font-size: 2.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

@media (min-width: 992px) {
    .hero-title {
        font-size: 4rem;
    }
}

.text-primary {
    color: var(--primary);
    position: relative;
}

.text-secondary {
    color: var(--secondary);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 500px;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.25rem;
    }
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.stat-number {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
}

.hero-right {
    display: none;
}

@media (min-width: 992px) {
    .hero-right {
        display: block;
    }
}

.hero-image-wrapper {
    position: relative;
    animation: floatImage 5s ease-in-out infinite;
}

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

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    inset: -20px;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    border-radius: var(--radius-xl);
    filter: blur(40px);
    opacity: 0.3;
    z-index: -1;
}

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

.hero-badge-float {
    position: absolute;
    bottom: -20px;
    left: -20px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    animation: floatBadge 3s ease-in-out infinite;
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(2deg); }
}

.badge-icon {
    width: 48px;
    height: 48px;
    background: rgba(254, 204, 9, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-icon svg {
    width: 24px;
    height: 24px;
    color: var(--secondary);
    fill: var(--secondary);
}

.badge-text strong {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    color: var(--dark);
}

.badge-text span {
    font-size: 0.8rem;
    color: var(--text-light);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

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

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--primary);
    border-radius: var(--radius-full);
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-dot {
    width: 6px;
    height: 10px;
    background: var(--primary);
    border-radius: var(--radius-full);
    animation: scrollDot 1.5s infinite;
}

@keyframes scrollDot {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(12px); opacity: 0.3; }
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: var(--background-alt);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: var(--secondary);
    opacity: 0.15;
    filter: blur(100px);
    border-radius: 50%;
}

.services::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 350px;
    height: 350px;
    background: var(--primary);
    opacity: 0.1;
    filter: blur(80px);
    border-radius: 50%;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    position: relative;
    z-index: 10;
}

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

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

.service-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    transition: var(--transition);
    cursor: pointer;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.service-card:hover {
    transform: translateY(-8px) rotateX(5deg);
    box-shadow: 0 20px 40px rgba(236, 106, 92, 0.15);
    border-color: var(--secondary);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--background), var(--background-alt));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.service-card:hover .service-icon {
    background: rgba(236, 106, 92, 0.15);
    transform: scale(1.1) rotate(5deg);
}

.service-icon svg {
    width: 28px;
    height: 28px;
    color: var(--primary);
}

.service-card h3 {
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.service-card p {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Why Choose Us Section */
.why-us {
    padding: 6rem 0;
    background: var(--background);
}

.why-us-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 992px) {
    .why-us-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.why-us-image {
    position: relative;
    order: 2;
}

@media (min-width: 992px) {
    .why-us-image {
        order: 1;
    }
}

.why-us-image::before {
    content: '';
    position: absolute;
    inset: -20px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: var(--radius-xl);
    filter: blur(40px);
    opacity: 0.2;
    z-index: -1;
}

.why-us-image img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    animation: floatBadge 4s ease-in-out infinite;
}

.why-us-content {
    order: 1;
}

@media (min-width: 992px) {
    .why-us-content {
        order: 2;
    }
}

.why-us-content .section-title {
    text-align: left;
    margin-bottom: 2rem;
}

.why-us-content .section-tag {
    color: var(--secondary);
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: var(--transition);
    cursor: pointer;
}

.benefit-card:hover {
    border-color: var(--secondary);
    box-shadow: var(--shadow-md);
    transform: translateX(8px);
}

.benefit-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(236, 106, 92, 0.15), rgba(254, 204, 9, 0.15));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon svg {
    width: 28px;
    height: 28px;
    color: var(--primary);
}

.benefit-text h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.benefit-text p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* QR Section */
.qr-section {
    padding: 5rem 0;
    background: var(--background-alt);
}

.qr-card {
    position: relative;
    background: linear-gradient(135deg, var(--dark), #3D3A36);
    border-radius: var(--radius-xl);
    padding: 3rem 2rem;
    text-align: center;
    overflow: hidden;
}

@media (min-width: 768px) {
    .qr-card {
        padding: 4rem 3rem;
    }
}

.qr-bg-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.qr-circle {
    position: absolute;
    border-radius: 50%;
}

.qr-circle-1 {
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: conic-gradient(var(--secondary), var(--primary), var(--secondary));
    opacity: 0.15;
    animation: rotate 60s linear infinite;
}

.qr-circle-2 {
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: conic-gradient(var(--primary), var(--secondary), var(--primary));
    opacity: 0.1;
    animation: rotate 45s linear infinite reverse;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.qr-card h2 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 10;
}

@media (min-width: 768px) {
    .qr-card h2 {
        font-size: 2.5rem;
    }
}

.qr-card > p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 10;
}

.qr-boxes {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    z-index: 10;
}

@media (min-width: 768px) {
    .qr-boxes {
        flex-direction: row;
        gap: 2rem;
    }
}

.qr-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    transition: var(--transition);
}

.qr-box:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.15);
}

.qr-placeholder {
    width: 140px;
    height: 140px;
    background: var(--white);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-md);
}

.qr-placeholder svg {
    width: 90px;
    height: 90px;
    color: var(--dark);
}

.qr-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--white);
    font-weight: 600;
}

.qr-label svg {
    width: 18px;
    height: 18px;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: var(--background);
}

.contact-grid {
    display: grid;
    gap: 1.5rem;
}

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

.contact-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.contact-card:hover {
    border-color: var(--secondary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.contact-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(236, 106, 92, 0.15), rgba(254, 204, 9, 0.15));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.contact-icon svg {
    width: 32px;
    height: 32px;
    color: var(--primary);
}

.contact-icon-gold svg {
    color: var(--secondary);
}

.contact-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-links a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text);
    font-weight: 500;
}

.contact-links a:hover {
    color: var(--primary);
}

.contact-links svg {
    width: 14px;
    height: 14px;
    color: var(--primary);
}

.address {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* Lead Form Section */
.lead-form-section {
    padding: 6rem 0;
    background: var(--background-alt);
    position: relative;
    overflow: hidden;
}

.form-bg-shape {
    position: absolute;
    top: 50px;
    right: -200px;
    width: 400px;
    height: 400px;
    background: var(--secondary);
    opacity: 0.15;
    filter: blur(80px);
    border-radius: 50%;
    animation: pulse 10s ease-in-out infinite;
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 10;
}

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

.form-row {
    display: grid;
    gap: 1.5rem;
}

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

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

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text);
    background: var(--white);
    border: 2px solid rgba(236, 106, 92, 0.2);
    border-radius: var(--radius-md);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(236, 106, 92, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

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

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236B6660' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 18px;
    padding-right: 3rem;
}

.form-success {
    text-align: center;
    padding: 3rem 2rem;
}

.form-success svg {
    width: 64px;
    height: 64px;
    color: #22c55e;
    margin-bottom: 1.5rem;
}

.form-success h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.form-success p {
    color: var(--text-light);
}

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

.footer-grid {
    display: grid;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

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

.footer-brand .logo {
    margin-bottom: 1rem;
}

.footer-brand .logo-icon {
    width: 56px;
    height: 56px;
    font-size: 1.75rem;
}

.footer-brand .logo-text h3 {
    color: var(--white);
    font-size: 1.5rem;
}

.footer-brand .logo-text span {
    color: rgba(255, 255, 255, 0.6);
}

.footer-brand > p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    max-width: 350px;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-links a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.social-links svg {
    width: 18px;
    height: 18px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    color: var(--white);
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a,
.footer-contact a,
.footer-contact li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--secondary);
}

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

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.9rem;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Floating Buttons */
.whatsapp-btn {
    position: fixed;
    bottom: 100px;
    right: 1.5rem;
    z-index: 100;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    animation: whatsappPulse 2s infinite;
}

@media (min-width: 768px) {
    .whatsapp-btn {
        bottom: 2rem;
    }
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

.whatsapp-btn svg {
    width: 28px;
    height: 28px;
    color: var(--white);
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    50% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
}

.mobile-call-btn {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

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

.mobile-call-btn svg {
    width: 20px;
    height: 20px;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

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

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 10px;
}

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

/* Brochure Download Btn */
.btn-brochure {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #facc15;
  color: #000;
  padding: 10px 14px;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
}

.btn-brochure:hover {
  background: #eab308;
  transform: scale(1.05);
}