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

:root {
    /* Modern Black & White Theme */
    --primary-color: #ffffff;
    --secondary-color: #f0f0f0;
    --accent-color: #cccccc;
    
    /* Colors */
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-muted: #888888;
    --bg-primary: #000000;
    --bg-secondary: #111111;
    --bg-tertiary: #1a1a1a;
    
    /* Typography */
    --font-primary: 'Roboto', sans-serif;
    --font-secondary: 'Inter', sans-serif;
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-medium: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-secondary);
    line-height: 1.5;
    color: var(--text-primary);
    background: radial-gradient(ellipse at center, rgba(17, 17, 17, 1) 0%, rgba(0, 0, 0, 1) 100%);
    background-attachment: fixed;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.01) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* Subtle brand element decorations */
.services::after {
    content: '';
    position: absolute;
    top: 10%;
    right: -5%;
    width: 200px;
    height: 300px;
    background: url('brand-elements/arch-monotone.png') no-repeat;
    background-size: contain;
    opacity: 0.06;
    z-index: 0;
    pointer-events: none;
    transform: rotate(15deg);
}

.portfolio::before {
    content: '';
    position: absolute;
    top: 20%;
    left: -3%;
    width: 150px;
    height: 200px;
    background: url('brand-elements/pillar-monotone.png') no-repeat;
    background-size: contain;
    opacity: 0.08;
    z-index: 0;
    pointer-events: none;
    transform: rotate(-10deg);
}

.about::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: -2%;
    width: 180px;
    height: 250px;
    background: url('brand-elements/arch-detailed.png') no-repeat;
    background-size: contain;
    opacity: 0.05;
    z-index: 0;
    pointer-events: none;
    transform: rotate(20deg);
}

.packages::before {
    content: '';
    position: absolute;
    top: 15%;
    left: -4%;
    width: 120px;
    height: 180px;
    background: url('brand-elements/pillar.png') no-repeat;
    background-size: contain;
    opacity: 0.06;
    z-index: 0;
    pointer-events: none;
    transform: rotate(-15deg);
}

.testimonials::after {
    content: '';
    position: absolute;
    bottom: 5%;
    left: -3%;
    width: 160px;
    height: 220px;
    background: url('brand-elements/arch.png') no-repeat;
    background-size: contain;
    opacity: 0.05;
    z-index: 0;
    pointer-events: none;
    transform: rotate(-5deg);
}

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

/* ===================
   NAVIGATION STYLES
   =================== */

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all var(--transition-medium);
    transform: translateY(-100%);
    opacity: 0;
}

.navbar.visible {
    transform: translateY(0);
    opacity: 1;
    background: rgba(0, 0, 0, 0.9);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.8rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo .logo-img {
    height: 35px;
    width: auto;
    transition: transform var(--transition-fast);
}

.nav-logo .logo-img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 400;
    font-size: 0.85rem;
    position: relative;
    padding: 0.5rem 0;
    transition: all var(--transition-medium);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: all var(--transition-medium);
    transform: translateX(-50%);
}

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

.nav-link:hover::before {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.bar {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: all var(--transition-medium);
    border-radius: 1px;
}

/* ===================
   HERO SECTION STYLES
   =================== */

.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero::before {
    content: '';
    position: absolute;
    top: 15%;
    left: 5%;
    width: 160px;
    height: 160px;
    background: url('brand-elements/arch.png') no-repeat center;
    background-size: contain;
    opacity: 0.06;
    z-index: 1;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 20%;
    right: 8%;
    width: 130px;
    height: 130px;
    background: url('brand-elements/pillar.png') no-repeat center;
    background-size: contain;
    opacity: 0.07;
    z-index: 1;
    pointer-events: none;
}

.hero.fixed-phase {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
}

.hero.transitioning {
    transform: translateY(-20px);
}
.hero.smooth-release {
    transform: translateY(0px);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-spacer {
    height: 0vh;
    pointer-events: none;
}

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

#hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity var(--transition-slow);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
    transition: opacity var(--transition-slow);
    pointer-events: none;
}

.video-controls {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 4;
    display: flex;
    gap: 10px;
}

.control-btn {
    width: 45px;
    height: 45px;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-medium);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.control-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.hero-content-wrapper {
    position: absolute;
    z-index: 3;
    text-align: center;
    max-width: 700px;
    padding: 0 2rem;
    transition: all var(--transition-slow);
}

.hero-content-wrapper.hidden {
    opacity: 0;
    transform: translateY(30px);
    pointer-events: none;
    visibility: hidden;
}

.hero-content-wrapper.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    visibility: visible;
}

.hero-logo {
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px) scale(0.8);
    transition: all var(--transition-slow);
}

.hero-logo-img {
    height: 120px;
    width: auto;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.5));
    transition: all var(--transition-medium);
}

.hero-logo-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 25px rgba(0, 0, 0, 0.7));
}

.hero-subtitle {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-weight: 300;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--transition-slow);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--transition-slow);
}

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

.stat-number {
    display: block;
    font-family: var(--font-primary);
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    font-weight: 700;
    color: var(--text-primary);
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--text-primary);
    padding: 0.8rem 2rem;
    font-size: 0.9rem;
    font-weight: 400;
    border-radius: 30px;
    cursor: pointer;
    transition: all var(--transition-medium);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: var(--font-secondary);
    opacity: 0;
    transform: translateY(20px);
}

.cta-button:hover {
    background: var(--text-primary);
    color: var(--bg-primary);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
    letter-spacing: 0.8px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    text-align: center;
    opacity: 1;
    transition: opacity var(--transition-slow);
    cursor: pointer;
}

.scroll-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
    font-weight: 300;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.scroll-arrow {
    color: var(--text-primary);
    animation: bounce 2s infinite;
}

.scroll-arrow svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-8px);
    }
    60% {
        transform: translateY(-4px);
    }
}

/* ===================
   SECTION STYLES
   =================== */

section {
    padding: 80px 0;
    position: relative;
    background: var(--bg-primary);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-family: var(--font-primary);
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    font-weight: 300;
    margin-bottom: 1rem;
    color: var(--text-primary);
    position: relative;
    letter-spacing: -0.02em;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--text-primary), transparent);
    opacity: 0.5;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

/* ===================
   SERVICES SECTION
   =================== */

.services {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    align-items: stretch;
    position: relative;
    margin-bottom: 2rem;
}

.services-grid::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -50px;
    width: 280px;
    height: 280px;
    background: url('brand-elements/arch.png') no-repeat center;
    background-size: contain;
    opacity: 0.07;
    z-index: 0;
    pointer-events: none;
}

.service-card {
    background: rgba(26, 26, 26, 0.8);
    padding: 2rem 1.5rem;
    border-radius: 30px;
    text-align: center;
    transition: all var(--transition-medium);
    opacity: 0;
    transform: translateY(30px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    z-index: 1;
    height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 80px;
    height: 80px;
    background: url('brand-elements/pillar.png') no-repeat center;
    background-size: contain;
    opacity: 0.08;
    z-index: -1;
    pointer-events: none;
}

.service-card:nth-child(2)::after {
    background: url('brand-elements/arch.png') no-repeat center;
}

.service-card:nth-child(4)::after {
    background: url('brand-elements/arch.png') no-repeat center;
    bottom: -10px;
    right: -10px;
    width: 70px;
    height: 70px;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(26, 26, 26, 0.95);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-card:hover .service-features {
    opacity: 1;
    transform: translateY(0);
}

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

.service-icon {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    opacity: 0.8;
    transition: all var(--transition-medium);
    transform: scale(1);
    text-align: center;
    display: block;
}

.service-card h3 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
    font-family: var(--font-primary);
    line-height: 1.3;
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    text-align: center;
    opacity: 0.7;
    transform: translateY(10px);
    margin-top: auto;
    font-size: 0.8rem;
    transition: all var(--transition-medium);
}

.service-features span {
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 400;
}

/* ===================
   PORTFOLIO SECTION
   =================== */

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

.portfolio-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.category-btn {
    padding: 0.6rem 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    color: var(--text-secondary);
    font-weight: 400;
    border-radius: 30px;
    cursor: pointer;
    transition: all var(--transition-medium);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-btn.active,
.category-btn:hover {
    color: var(--text-primary);
    border-color: var(--text-primary);
    background: rgba(255, 255, 255, 0.1);
}

.portfolio-container {
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
    margin: 2rem 0;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
}

.portfolio-container::-webkit-scrollbar {
    height: 6px;
}

.portfolio-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.portfolio-container::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

.portfolio-container::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

.portfolio-grid {
    display: flex;
    gap: 2rem;
    width: max-content;
    transition: none;
}

.portfolio-item {
    flex: 0 0 450px;
    background: rgba(17, 17, 17, 0.9);
    border-radius: 30px;
    overflow: hidden;
    transition: all var(--transition-medium);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    opacity: 1;
    transform: scale(1);
}

.portfolio-item:nth-child(3n+1)::before {
    content: '';
    position: absolute;
    top: -8px;
    right: -8px;
    width: 40px;
    height: 40px;
    background: url('brand-elements/pillar.png') no-repeat center;
    background-size: contain;
    opacity: 0.08;
    z-index: 1;
    pointer-events: none;
}

.portfolio-item:nth-child(3n)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: -5px;
    width: 35px;
    height: 35px;
    background: url('brand-elements/arch.png') no-repeat center;
    background-size: contain;
    opacity: 0.07;
    z-index: 1;
    pointer-events: none;
}

.portfolio-item:hover {
    transform: scale(1.03) translateY(-5px);
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(17, 17, 17, 1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
    border-radius: 30px;
    background: rgba(26, 26, 26, 0.9);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 30px;
    transition: all var(--transition-medium);
}

.video-wrapper iframe:hover {
    transform: scale(1.02);
}

.video-info {
    padding: 1rem 1.5rem;
}

.video-info h4 {
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}

.video-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.portfolio-cta {
    text-align: center;
    margin-top: 3rem;
}

.portfolio-social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.portfolio-cta p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.portfolio-navigation {
    position: static;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
    z-index: 10;
    background: transparent;
    width: 100%;
    pointer-events: auto;
}

.portfolio-nav-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
    padding: 0.8rem 1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition-fast);
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.portfolio-nav-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.portfolio-nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.portfolio-nav-btn:disabled:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.portfolio-dots {
    display: flex;
    gap: 0.5rem;
}

.portfolio-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.portfolio-dot.active {
    background: var(--text-primary);
    transform: scale(1.2);
}


.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--text-primary);
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 400;
    transition: all var(--transition-medium);
    font-size: 0.9rem;
}

.social-btn:hover {
    background: var(--text-primary);
    color: var(--bg-primary);
    transform: translateY(-2px);
}

/* ===================
   ABOUT SECTION
   =================== */

.about {
    background: var(--bg-secondary);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 5%;
    width: 180px;
    height: 180px;
    background: url('brand-elements/pillar.png') no-repeat center;
    background-size: contain;
    opacity: 0.06;
    z-index: 0;
    pointer-events: none;
}

.about-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.about-description {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 300;
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.founder-card {
    background: rgba(26, 26, 26, 0.8);
    border-radius: 30px;
    overflow: hidden;
    transition: all var(--transition-medium);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.founder-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(26, 26, 26, 0.95);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.founder-image {
    height: 200px;
    overflow: hidden;
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.founder-info {
    padding: 1.5rem;
}

.founder-info h3 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 0.3rem;
    color: var(--text-primary);
}

.founder-title {
    color: var(--text-muted);
    font-weight: 400;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.75rem;
}

.founder-bio {
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.founder-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.founder-specialties span {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    padding: 0.3rem 0.8rem;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 400;
}

.founder-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.founder-details {
    flex: 1;
}

.founder-social {
    display: flex;
    align-items: center;
    margin-left: 1rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.stat-card {
    text-align: center;
    background: var(--bg-tertiary);
    padding: 1.5rem;
    border-radius: 30px;
    transition: all var(--transition-medium);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-family: var(--font-primary);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
}

.stat-label {
    color: var(--text-secondary);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.75rem;
}

/* ===================
   TESTIMONIALS SECTION
   =================== */

.testimonials {
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.testimonials-container {
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
    margin: 2rem 0;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
}

.testimonials-container::-webkit-scrollbar {
    height: 6px;
}

.testimonials-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.testimonials-container::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

.testimonials-container::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

.testimonials-slider {
    display: flex;
    gap: 2rem;
    width: max-content;
    padding: 1rem 2rem;
}

.testimonial-card {
    flex: 0 0 550px;
    height: 480px;
    background: rgba(26, 26, 26, 0.9);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.2fr 1.6fr;
    gap: 0;
    align-items: center;
    padding: 0;
    transition: all var(--transition-medium);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
}

.testimonial-card:nth-child(odd)::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    width: 50px;
    height: 50px;
    background: url('brand-elements/arch.png') no-repeat center;
    background-size: contain;
    opacity: 0.06;
    z-index: 1;
    pointer-events: none;
}

.testimonial-card:nth-child(even)::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: -8px;
    width: 45px;
    height: 45px;
    background: url('brand-elements/pillar.png') no-repeat center;
    background-size: contain;
    opacity: 0.07;
    z-index: 1;
    pointer-events: none;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.testimonial-image {
    position: relative;
    height: 100%;
    min-height: 480px;
    overflow: hidden;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform var(--transition-slow);
}

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

.testimonial-text-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    font-style: italic;
    position: relative;
    font-weight: 300;
}

.testimonial-content p::before {
    content: '"';
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.2);
    position: absolute;
    top: -1rem;
    left: -1.5rem;
    font-family: var(--font-primary);
}

.testimonial-author h4 {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
}

.testimonial-author span {
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 400;
}

.testimonial-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.nav-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--text-secondary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    transition: all var(--transition-medium);
}

.nav-btn:hover {
    border-color: var(--text-primary);
    color: var(--text-primary);
}

.testimonial-dots {
    display: flex;
    gap: 0.4rem;
    justify-content: center;
    flex-wrap: wrap;
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all var(--transition-medium);
}

.dot.active {
    background: var(--text-primary);
    transform: scale(1.3);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.1);
}

/* ===================
   PACKAGES SECTION
   =================== */

.packages {
    background: var(--bg-secondary);
    position: relative;
}

.packages .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

/* Pricing Toggle */
.pricing-toggle {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 40px;
    padding: 4px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
}

.toggle-btn {
    flex: 1;
    padding: 0.8rem 1.5rem;
    background: transparent;
    border: none;
    border-radius: 36px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    font-size: 0.9rem;
    position: relative;
}

.toggle-btn.active {
    background: var(--gradient);
    color: white;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* Packages Container */
.packages-container {
    margin-bottom: 4rem;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    margin-top: 2rem;
    align-items: start;
}

/* Package Cards */
.package-card {
    background: rgba(26, 26, 26, 0.95);
    border-radius: 24px;
    padding: 2rem;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.package-card:hover::before {
    opacity: 1;
}

.package-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.package-card.featured {
    transform: scale(1.05);
    border-color: rgba(212, 175, 55, 0.3);
}

.package-card.featured::before {
    opacity: 1;
}

.package-card.featured:hover {
    transform: translateY(-12px) scale(1.07);
}

/* Package Glow Effect */
.package-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    transform: translate(-50%, -50%) rotate(45deg);
    background: conic-gradient(from 0deg, transparent, rgba(212, 175, 55, 0.1), transparent, rgba(139, 0, 0, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.package-card:hover .package-glow {
    opacity: 0.6;
}

/* Package Badge */
.package-badge {
    position: absolute;
    top: 8px;
    right: 0.5rem;
    background: var(--gradient);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 16px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
    z-index: 10;
}

/* Package Icon */
.package-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--accent);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.package-card:hover .package-icon {
    color: #d4af37;
    opacity: 1;
    transform: scale(1.1);
}

/* Package Header */
.package-header {
    text-align: center;
    margin-bottom: 2rem;
    flex-shrink: 0;
}

.package-header h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.package-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.package-price {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    gap: 0.3rem;
    margin-bottom: 0.5rem;
}

.package-price .price-main {
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
}

.package-price .price-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 400;
}

.currency {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.amount {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-primary);
    font-family: var(--font-primary);
}

.period {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 400;
}

/* Pricing Toggle States */
.per-event-price,
.per-event-period {
    display: none;
}

.packages.per-event .per-minute-price,
.packages.per-event .per-minute-period {
    display: none;
}

.packages.per-event .per-event-price,
.packages.per-event .per-event-period {
    display: inline;
}

.packages.pricing-transition .package-price {
    opacity: 0.7;
    transform: scale(0.95);
    transition: all 0.3s ease;
}

.packages.pricing-transition .amount,
.packages.pricing-transition .period {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Package Features */
.package-features {
    margin-bottom: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.feature {
    display: flex;
    align-items: center;
    padding: 0.8rem 0;
    color: var(--text-secondary);
    font-weight: 400;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.feature:hover {
    color: var(--text-primary);
    padding-left: 0.5rem;
}

.feature:last-child {
    border-bottom: none;
}

.feature-icon {
    margin-right: 0.8rem;
    font-size: 1.1rem;
    width: 20px;
    display: flex;
    justify-content: center;
}

.feature-text {
    flex: 1;
}

/* Package Button */
.package-btn {
    width: 100%;
    background: transparent;
    color: var(--text-primary);
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    text-transform: none;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.package-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.package-btn:hover::before {
    left: 0;
}

.package-btn:hover {
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.package-btn svg {
    transition: transform 0.3s ease;
}

.package-btn:hover svg {
    transform: translate(2px, -2px);
}

/* Package Comparison */
.package-comparison {
    background: rgba(26, 26, 26, 0.6);
    border-radius: 20px;
    padding: 2rem;
    margin: 3rem 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.package-comparison h4 {
    text-align: center;
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.comparison-table {
    display: grid;
    gap: 1rem;
}

.comparison-header {
    display: grid;
    grid-template-columns: 1fr 2fr;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 0.5rem;
}

.comparison-header .package-names {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    text-align: center;
}

.comparison-header::before {
    content: 'Inclusions';
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1rem;
}

.package-name {
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    text-align: center;
}

.essential-header {
    background: rgba(107, 114, 128, 0.2);
    color: #9ca3af;
    border: 1px solid rgba(107, 114, 128, 0.3);
}

.premium-header {
    background: rgba(212, 175, 55, 0.2);
    color: #d4af37;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.luxury-header {
    background: rgba(233, 30, 99, 0.2);
    color: #e91e63;
    border: 1px solid rgba(233, 30, 99, 0.3);
}

.comparison-feature {
    display: grid;
    grid-template-columns: 1fr 2fr;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-name {
    font-weight: 500;
    color: var(--text-primary);
}

.feature-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    text-align: center;
}

.feature-values span {
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.essential-value {
    border-left: 3px solid #6b7280;
}

.premium-value {
    border-left: 3px solid #d4af37;
}

.luxury-value {
    border-left: 3px solid #e91e63;
}

/* Package Add-ons */
.package-addons {
    background: var(--bg-tertiary);
    padding: 3rem 2rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
}

.package-addons h4 {
    text-align: center;
    font-family: var(--font-primary);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.addon-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.addon-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.addon-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.addon-card h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.addon-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.addon-note {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-style: italic;
    max-width: 600px;
    margin: 0 auto;
}

/* ===================
   CONTACT SECTION
   =================== */

.contact {
    background: var(--bg-primary);
    position: relative;
    padding: 5rem 0;
    min-height: 100vh;
    overflow: hidden;
}

/* Floating Background Elements */
.contact-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.floating-elements {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient);
    opacity: 0.03;
    animation: float 15s infinite ease-in-out;
}

.floating-element.element-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.floating-element.element-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: -5%;
    animation-delay: -5s;
}

.floating-element.element-3 {
    width: 150px;
    height: 150px;
    top: 80%;
    left: 20%;
    animation-delay: -10s;
}

.floating-element.element-4 {
    width: 100px;
    height: 100px;
    top: 30%;
    right: 25%;
    animation-delay: -7.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(90deg); }
    50% { transform: translateY(-40px) rotate(180deg); }
    75% { transform: translateY(-20px) rotate(270deg); }
}

/* Contact Hero */
.contact-hero {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-title {
    font-family: var(--font-primary);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.title-line {
    display: block;
    opacity: 0;
    animation: slideInUp 0.8s ease-out forwards;
}

.title-line:nth-child(1) {
    animation-delay: 0.2s;
    color: var(--text-primary);
}

.title-line.highlight {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation-delay: 0.4s;
}

.contact-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.6;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.8s forwards;
}

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

.hero-stat .stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-family: var(--font-primary);
}

.hero-stat .stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Contact Main */
.contact-main {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

/* Contact Methods Container */
.contact-methods-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.secondary-contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Desktop: Column layout for secondary contact row */
@media (min-width: 769px) {
    .secondary-contact-row {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
}

.whatsapp-card,
.instagram-card,
.email-card {
    min-height: 65px !important;
    padding: 2rem !important;
}

.contact-method-card {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
}

.contact-method-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.contact-method-card:hover::before {
    transform: translateX(0);
}

.contact-method-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    background: rgba(35, 35, 35, 0.9);
}

.contact-method-card.primary-card {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(139, 0, 0, 0.1));
    border-color: rgba(212, 175, 55, 0.2);
    min-height: 200px;
    padding: 2rem;
}

.secondary-contact-methods .contact-method-card {
    min-height: 65px !important;
    padding: 2rem !important;
}

.card-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    background: conic-gradient(from 0deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transform: translate(-50%, -50%) rotate(0deg);
    opacity: 0;
    transition: all 0.6s ease;
    pointer-events: none;
}

.contact-method-card:hover .card-glow {
    opacity: 0.6;
    transform: translate(-50%, -50%) rotate(180deg);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.header-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.header-text h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.header-text .card-description {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.3;
}

.method-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    transition: all 0.3s ease;
}

.contact-method-card:hover .method-icon {
    background: rgba(212, 175, 55, 0.1);
    color: #d4af37;
    transform: scale(1.1);
}

.card-header {
    flex-shrink: 0;
    margin-bottom: 0.75rem;
}

.card-header h3 {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.3;
}

.card-description {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 1rem;
    line-height: 1.4;
    flex-grow: 1;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-action {
    margin-bottom: 0.5rem;
    flex-shrink: 0;
}

.action-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding: 0.25rem 0;
    word-break: break-word;
    min-width: 0;
}

.action-link span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;
    flex: 1;
}

.action-link:hover {
    color: #d4af37;
    transform: translateX(5px);
}

.action-link svg {
    transition: transform 0.3s ease;
}

.action-link:hover svg {
    transform: translate(2px, -2px);
}

.availability-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
    padding: 0.3rem 0;
}

.availability-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Contact Form Section */
.contact-form-section {
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h3 {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.form-header p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.form-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .form-benefits {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .benefit {
        flex-shrink: 0;
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    .form-benefits {
        gap: 0.75rem;
    }
    
    .benefit {
        font-size: 0.8rem;
        white-space: normal;
        text-align: center;
        line-height: 1.3;
    }
}

.benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.benefit svg {
    color: #22c55e;
}

/* Progressive Form */
.progressive-form {
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
    max-width: 600px;
    margin: 0 auto;
    box-sizing: border-box;
}

.contact-form-wrapper {
    background: transparent;
    padding: 0;
}

.form-progress {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.progress-bar {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin-right: 1rem;
}

.progress-fill {
    height: 100%;
    background: #e91e63;
    width: 0%;
    transition: width 0.4s ease;
}

.progress-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.form-step {
    display: none;
    flex-direction: column;
    gap: 1.5rem;
    animation: slideInRight 0.4s ease-out;
}

.form-step.active {
    display: flex;
}

.form-step h4 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

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

.form-field {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-field label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.form-field input,
.form-field select,
.form-field textarea,
.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    font-family: inherit;
    box-sizing: border-box;
}

/* Fix calendar icon color */
.form-field input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

.form-field input[type="date"]::-webkit-inner-spin-button,
.form-field input[type="date"]::-webkit-clear-button {
    display: none;
}

/* Dropdown arrow styling */
.form-field select {
    appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="2"><polyline points="6,9 12,15 18,9"></polyline></svg>');
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px;
    padding-right: 3rem;
}

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

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus,
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: rgba(212, 175, 55, 0.5);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.1);
}

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

.field-focus {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0;
    background: var(--gradient);
    transition: width 0.3s ease;
}

.form-field input:focus ~ .field-focus,
.form-field select:focus ~ .field-focus,
.form-field textarea:focus ~ .field-focus {
    width: 100%;
}

/* Package Selector */
.package-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.package-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.02);
}

.package-option:hover {
    border-color: rgba(212, 175, 55, 0.3);
    background: rgba(212, 175, 55, 0.05);
}

.package-option.selected {
    border-color: rgba(212, 175, 55, 0.5);
    background: rgba(212, 175, 55, 0.1);
}

.package-radio {
    position: relative;
    width: 20px;
    height: 20px;
}

.package-radio input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    cursor: pointer;
}

.radio-custom {
    width: 100%;
    height: 100%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition: all 0.3s ease;
    position: relative;
}

.package-radio input[type="radio"]:checked ~ .radio-custom {
    border-color: #d4af37;
    background: #d4af37;
}

.package-radio input[type="radio"]:checked ~ .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.package-option label {
    flex: 1;
    cursor: pointer;
    margin: 0;
    text-align: left;
}

.package-name {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    text-align: left;
}

.contact-form .package-selector .package-option .package-price {
    display: block !important;
    font-size: 0.85rem !important;
    color: var(--text-secondary) !important;
    text-align: left !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    flex-direction: row !important;
    gap: 0 !important;
    margin-bottom: 0 !important;
    padding-left: 1rem !important;
}

/* Character Count */
.character-count {
    position: absolute;
    bottom: -1.5rem;
    right: 0;
    font-size: 0.8rem;
    color: var(--text-muted);
}

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

/* Form Actions */
.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    margin-top: 2rem;
}

.form-btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.form-btn.secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.form-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    transform: translateY(-2px);
}

.form-btn.primary {
    background: var(--gradient);
    color: white;
    border: 2px solid transparent;
    margin-left: auto;
}

.form-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.form-btn.submit {
    background: var(--gradient);
    color: white;
    border: 2px solid transparent;
    width: 100%;
    justify-content: center;
}

.form-btn.submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.button-loader {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    display: none;
}

.form-btn.loading .button-loader {
    display: block;
}

.form-btn.loading span {
    display: none;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 8px;
}

/* Form Navigation */
.form-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    gap: 1rem;
}

.char-counter {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.5rem;
}

.package-select-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.package-select-card {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    text-align: left;
    display: block;
    width: 100%;
}

.package-select-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.package-select-card label {
    cursor: pointer;
    display: block;
    width: 100%;
    margin: 0;
    text-align: left;
}

.package-select-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.package-select-card.selected {
    border-color: #e91e63;
    background: rgba(233, 30, 99, 0.05);
}

.package-select-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.package-select-card .price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #d4af37;
}

/* Contact Footer */
.contact-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    background: rgba(26, 26, 26, 0.4);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 3rem;
}

.location-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.location-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.location-details h4 {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.location-details p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

.quick-facts {
    display: flex;
    gap: 2rem;
}

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

.fact-icon {
    font-size: 1.2rem;
}

.fact-text {
    display: flex;
    flex-direction: column;
}

.fact-title {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.fact-desc {
    color: var(--text-secondary);
    font-size: 0.8rem;
}

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

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOutRight {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(30px);
    }
}

/* ===================
   FOOTER STYLES
   =================== */

.footer {
    background: var(--bg-secondary);
    color: var(--text-primary);
    padding: 3rem 0 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.footer-tagline {
    color: var(--text-secondary);
    line-height: 1.5;
    font-size: 0.9rem;
    margin: 0;
    max-width: 300px;
}


.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin: 0;
    padding: 0;
    text-align: right;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all var(--transition-medium);
}

.footer-links a:hover {
    color: var(--text-primary);
    transform: translateX(3px);
}

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

.social-link {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all var(--transition-medium);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.social-link:hover svg {
    fill: black;
}




/* ===================
   ANIMATIONS
   =================== */

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

.animate-in {
    animation: fadeInUp 0.6s ease-out forwards;
}

.service-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-item.animate-in {
    opacity: 1;
    transform: scale(1);
}

/* ===================
   RESPONSIVE DESIGN
   =================== */

@media (max-width: 1024px) {
    .hero-stats {
        gap: 1.5rem;
    }
    
    .founders-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    /* Packages Responsive - Tablet */
    .packages-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 1.5rem;
    }
    
    .package-card.featured {
        transform: scale(1.02);
    }
    
    .comparison-header {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }
    
    .comparison-header::before {
        grid-column: 1;
        margin-bottom: 0.5rem;
    }
    
    .comparison-header .package-name {
        display: flex;
        gap: 0.5rem;
        justify-content: center;
    }
    
    .comparison-feature {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }
    
    .feature-values {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background: var(--bg-primary);
        width: 100%;
        text-align: center;
        transition: left var(--transition-medium);
        padding: 1.5rem 0;
        gap: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-stats {
        gap: 1rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    /* Packages Responsive - Mobile */
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .package-card {
        padding: 1.5rem;
    }
    
    .package-card.featured {
        transform: none;
    }
    
    .package-card:hover {
        transform: translateY(-8px);
    }
    
    .pricing-toggle {
        max-width: 260px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .toggle-btn {
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
    }
    
    .package-header h3 {
        font-size: 1.3rem;
    }
    
    .amount {
        font-size: 1.8rem;
    }
    
    .package-comparison {
        padding: 1.5rem;
        margin: 2rem 0;
    }
    
    .comparison-feature {
        padding: 0.8rem;
    }
    
    .addons-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .package-addons {
        padding: 2rem 1.5rem;
    }
    
    .portfolio-item {
        flex: 0 0 320px;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-card {
        flex: 0 0 350px;
        height: 480px;
        grid-template-columns: 1fr;
    }
    
    .testimonial-image {
        min-height: 200px;
    }
    
    .testimonial-text-content {
        padding: 1.5rem;
    }

    .form-group {
        grid-template-columns: 1fr;
    }

    section {
        padding: 60px 0;
    }
    
    .video-controls {
        top: 15px;
        right: 15px;
        gap: 8px;
    }
    
    .control-btn {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-item {
        display: flex;
        align-items: center;
        gap: 1rem;
        justify-content: center;
    }

    .testimonial-card {
        flex: 0 0 280px;
        height: 480px;
        grid-template-columns: 1fr;
    }
    
    .testimonial-image {
        height: 150px;
        min-height: 150px;
        flex-shrink: 0;
        align-self: flex-start;
    }
    
    .testimonial-text-content {
        padding: 1rem;
        overflow: hidden;
    }
    
    .testimonial-content p {
        font-size: 0.85rem;
        line-height: 1.4;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 15;
        -webkit-box-orient: vertical;
    }
    
    .testimonial-author h4 {
        font-size: 0.95rem;
    }
    
    .testimonial-author span {
        font-size: 0.75rem;
    }
    
    .portfolio-item {
        flex: 0 0 280px;
    }
    
    .testimonials-slider {
        padding: 1rem;
    }
    
    .portfolio-grid {
        padding: 0 1rem;
    }
    
    .testimonials-container,
    .portfolio-container {
        margin: 1rem 0;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    section {
        padding: 50px 0;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
        text-align: center;
    }
    
    .footer-left {
        align-items: center;
        text-align: center;
    }
    
    .footer-brand {
        align-items: center;
        text-align: center;
    }
    
    .footer-tagline {
        max-width: none;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-links {
        display: none;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* ===================
   UTILITY CLASSES
   =================== */

.hidden {
    opacity: 0 !important;
    pointer-events: none;
}

.visible {
    opacity: 1 !important;
    pointer-events: auto;
}

/* Additional Footer Styles */
.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 2rem 0 1.5rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-tagline-bottom {
    color: #888;
    font-size: 0.8rem;
    margin: 0;
}

.footer-copyright {
    color: #888;
    font-size: 0.75rem;
    margin: 0;
}

/* ===================
   CONTACT SECTION RESPONSIVE
   =================== */

/* Tablet Styles */
@media (max-width: 1024px) {
    .contact-hero .hero-title {
        font-size: 3rem;
    }
    
    .contact-methods-container {
        gap: 1.25rem;
    }
    
    .contact-method-card.primary-card {
        padding: 1.75rem;
        min-height: 180px;
    }
    
    .whatsapp-card,
    .instagram-card,
    .email-card {
        padding: 1.1rem;
        min-height: 120px;
    }
    
    .card-header h3 {
        font-size: 1.05rem;
    }
    
    .card-description {
        font-size: 0.82rem;
        margin-bottom: 0.875rem;
    }
    
    .action-link {
        font-size: 0.87rem;
    }
    
    .progressive-form {
        max-width: 90%;
    }
    
    .contact-footer {
        padding: 1.5rem;
    }
    
    .quick-facts {
        gap: 1.5rem;
    }
    
    .contact-main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .contact-section {
        padding: 3rem 0;
    }
    
    .contact-hero {
        padding: 3rem 0;
        text-align: center;
    }
    
    .contact-hero .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .contact-hero .hero-subtitle {
        font-size: 1rem;
        max-width: none;
    }
    
    .floating-element {
        display: none;
    }
    
    .contact-methods-container {
        gap: 1rem;
    }
    
    .secondary-contact-row {
        display: flex;
        gap: 0.75rem;
        margin-top: 1rem;
    }
    
    .whatsapp-card,
    .instagram-card,
    .email-card {
        flex: 1;
        min-height: auto;
        padding: 1rem;
        text-align: center;
    }
    
    .whatsapp-card .card-description,
    .instagram-card .card-description,
    .email-card .card-description,
    .whatsapp-card .card-action,
    .instagram-card .card-action,
    .email-card .card-action {
        display: none;
    }
    
    .whatsapp-card .card-header,
    .instagram-card .card-header,
    .email-card .card-header {
        justify-content: center;
        flex-direction: column;
        gap: 0.5rem;
        margin-bottom: 0;
    }
    
    .whatsapp-card .method-icon,
    .instagram-card .method-icon,
    .email-card .method-icon {
        margin: 0 auto 0.5rem;
        width: 40px;
        height: 40px;
    }
    
    .whatsapp-card .method-icon svg,
    .instagram-card .method-icon svg,
    .email-card .method-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .whatsapp-card h3,
    .instagram-card h3,
    .email-card h3 {
        font-size: 0.85rem;
        margin: 0;
    }
    
    .contact-method-card {
        padding: 1.25rem;
        min-height: auto;
    }
    
    .contact-method-card.primary-card {
        padding: 1.5rem;
        min-height: auto;
    }
    
    .secondary-contact-methods .contact-method-card {
        padding: 1rem !important;
        min-height: auto !important;
    }
    
    .whatsapp-card,
    .instagram-card,
    .email-card {
        padding: 1rem !important;
        min-height: auto !important;
    }
    
    .card-header h3 {
        font-size: 1rem;
    }
    
    .card-description {
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
    }
    
    .action-link {
        font-size: 0.85rem;
    }
    
    .method-icon {
        width: 45px;
        height: 45px;
    }
    
    .method-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .progressive-form {
        max-width: 100%;
        margin: 2rem 0;
        padding: 1rem;
        box-sizing: border-box;
    }
    
    .form-header h3 {
        font-size: 1.5rem;
    }
    
    .form-progress {
        margin-bottom: 1.5rem;
    }
    
    .form-step {
        gap: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .form-field {
        margin-bottom: 1rem;
    }
    
    .form-field input,
    .form-field select,
    .form-field textarea,
    .form-input,
    .form-textarea,
    .form-select {
        padding: 0.875rem;
        font-size: 0.9rem;
    }
    
    .package-select-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .package-select-card {
        padding: 1rem;
    }
    
    .form-navigation {
        flex-direction: column;
        gap: 1rem;
    }
    
    .form-navigation .form-btn {
        width: 100%;
        justify-content: center;
    }
    
    .contact-footer {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        padding: 1.5rem;
    }
    
    .location-info h4 {
        font-size: 1.2rem;
    }
    
    .quick-facts {
        flex-direction: column;
        gap: 1rem;
    }
    
    .fact {
        flex-direction: row;
        text-align: left;
        gap: 0.75rem;
        align-items: center;
    }
    
    .contact-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .location-info {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .contact-hero .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .contact-hero .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .contact-method-card {
        padding: 1rem;
    }
    
    .contact-method-card.primary-card {
        padding: 1.25rem;
    }
    
    .secondary-contact-methods .contact-method-card {
        padding: 0.875rem;
    }
    
    .card-header h3 {
        font-size: 0.95rem;
    }
    
    .card-description {
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
    }
    
    .action-link {
        font-size: 0.8rem;
        padding: 0.125rem 0;
    }
    
    .method-icon {
        width: 40px;
        height: 40px;
    }
    
    .method-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .progressive-form {
        padding: 1rem;
        border-radius: 16px;
    }
    
    .form-header h3 {
        font-size: 1.3rem;
    }
    
    .form-field {
        margin-bottom: 0.75rem;
    }
    
    .form-field input,
    .form-field select,
    .form-field textarea,
    .form-input,
    .form-textarea,
    .form-select {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    .form-step {
        gap: 0.75rem;
    }
    
    .form-step h4 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .form-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .form-navigation {
        margin-top: 1.5rem;
    }
    
    .package-select-card h4 {
        font-size: 1rem;
    }
    
    .package-select-card .price {
        font-size: 1.3rem;
    }
    
    .contact-footer {
        padding: 1rem;
    }
    
    .location-info h4 {
        font-size: 1.1rem;
    }
    
    .location-info p {
        font-size: 0.8rem;
    }
    
    .quick-fact .fact-value {
        font-size: 1.2rem;
    }
    
    .quick-fact .fact-label {
        font-size: 0.7rem;
    }
}