/* ============================================
   FiftyDevs - Main Stylesheet
   Colors: #ffca02 (Gold), #259bfd (Blue), #52cf2b (Green)
   ============================================ */

:root {
    --primary-gold: #ffca02;
    --primary-blue: #259bfd;
    --primary-green: #52cf2b;
    --dark-bg: #0a0f1e;
    --dark-secondary: #1a1f2e;
    --dark-tertiary: #242a3a;
    --text-primary: #ffffff;
    --text-secondary: #b0b8cc;
    --border-color: #2a3044;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition);
}

/* ============================================
   NAVIGATION BAR
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 15, 30, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 800;
    font-size: 1.5rem;
}

.logo-img {
    height: 40px;
    width: auto;
}

.brand-name {
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu > li {
    position: relative;
}

.nav-menu a {
    color: var(--text-secondary);
    font-weight: 500;
    transition: all var(--transition);
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-gold);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-gold), var(--primary-blue));
    transition: width var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-dropdown-toggle {
    border: none;
    background: transparent;
    color: var(--text-secondary);
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.nav-dropdown-toggle i,
.nav-dropdown-toggle .nav-chevron {
    font-size: 0.75rem;
    transition: transform var(--transition);
    display: inline-block;
    line-height: 1;
}

.nav-dropdown.open .nav-dropdown-toggle,
.nav-dropdown:hover .nav-dropdown-toggle,
.nav-dropdown:focus-within .nav-dropdown-toggle,
.nav-dropdown-toggle:hover {
    color: var(--primary-gold);
}

.nav-dropdown.open .nav-dropdown-toggle i,
.nav-dropdown:hover .nav-dropdown-toggle i,
.nav-dropdown:focus-within .nav-dropdown-toggle i,
.nav-dropdown.open .nav-dropdown-toggle .nav-chevron,
.nav-dropdown:hover .nav-dropdown-toggle .nav-chevron,
.nav-dropdown:focus-within .nav-dropdown-toggle .nav-chevron {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 14px);
    right: 0;
    min-width: 220px;
    list-style: none;
    background: rgba(10, 15, 30, 0.98);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all var(--transition);
    z-index: 1002;
}

.nav-dropdown.open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-menu li a {
    display: block;
    padding: 0.6rem 0.75rem;
    border-radius: 8px;
    color: #dbe5f8;
}

.nav-dropdown-menu li a::after {
    display: none;
}

.nav-dropdown-menu li a:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
}

select,
option {
    background-color: #131a2b;
    color: #eaf1ff;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-gold);
    border-radius: 3px;
    transition: all var(--transition);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    display: inline-block;
    text-align: center;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-blue));
    color: var(--dark-bg);
    box-shadow: 0 10px 30px rgba(255, 202, 2, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 202, 2, 0.4);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: var(--dark-bg);
    transform: translateY(-3px);
}

.btn-whatsapp {
    background: linear-gradient(135deg, var(--primary-green), #1dd1a1);
    color: white;
    padding: 10px 20px;
    font-size: 0.9rem;
    margin-top: 1rem;
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(82, 207, 43, 0.3);
}

.btn-quote {
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-blue));
    color: var(--dark-bg) !important;
    border-radius: 50px;
    padding: 10px 22px;
    font-weight: 700;
}

.btn-quote:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 202, 2, 0.35);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(37, 155, 253, 0.2), transparent);
    top: -100px;
    right: -100px;
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 202, 2, 0.1), transparent);
    bottom: 50px;
    left: -50px;
    border-radius: 50%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-blue), var(--primary-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-brand-logos {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.brand-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.brand-logo {
    height: 32px;
    width: auto;
    object-fit: contain;
    opacity: 0.85;
}

.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-card {
    position: absolute;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(37, 155, 253, 0.2), rgba(255, 202, 2, 0.2));
    border: 1px solid var(--border-color);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: float 3s ease-in-out infinite;
}

.card-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: 15%;
    animation-delay: 1s;
}

.card-3 {
    bottom: 10%;
    left: 25%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.ghl-logo-animated {
    position: relative;
    z-index: 10;
}

.logo-spin {
    width: 150px;
    height: 150px;
    animation: spin 8s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url("data:image/svg+xml,%3Csvg width='100%' height='100' viewBox='0 0 1200 100' preserveAspectRatio='none'%3E%3Cpath d='M0,50 Q300,0 600,50 T1200,50 L1200,100 L0,100' fill='%231a1f2e' stroke='none'/%3E%3C/svg%3E");
    background-size: 600px 100px;
    animation: wave 10s linear infinite;
}

@keyframes wave {
    0% { background-position: 0 0; }
    100% { background-position: 600px 0; }
}

/* ============================================
   SECTION STYLES
   ============================================ */

section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services {
    background: linear-gradient(135deg, var(--dark-secondary) 0%, var(--dark-tertiary) 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
    transition: all var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(37, 155, 253, 0.15), transparent);
    border-radius: 50%;
    opacity: 0;
    transition: all var(--transition);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 10px 40px rgba(37, 155, 253, 0.2);
    transform: translateY(-10px);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.service-features {
    list-style: none;
    margin-top: 1rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */

.products {
    background: var(--dark-bg);
}

.products-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 30px;
    border: 2px solid var(--border-color);
    background: transparent;
    color: var(--text-secondary);
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all var(--transition);
    font-family: 'Poppins', sans-serif;
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-blue));
    color: var(--dark-bg);
    border-color: transparent;
}

.tab-btn:hover:not(.active) {
    border-color: var(--primary-gold);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: grid;
}

.products-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

#websites-list,
#funnels-list,
#tools-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    width: 100%;
}

.card-actions {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.btn-video {
    border: 1px solid var(--primary-blue);
    color: var(--primary-blue);
    background: transparent;
}

.btn-video:hover {
    background: rgba(37, 155, 253, 0.12);
}

.tool-thumb {
    width: 100%;
    height: 160px;
    border-radius: 12px;
    object-fit: cover;
    margin-bottom: 0.8rem;
    border: 1px solid #2b364e;
}

.product-card {
    background: linear-gradient(135deg, rgba(37, 155, 253, 0.1), rgba(255, 202, 2, 0.05));
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.card-type {
    display: inline-block;
    width: fit-content;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #0d1424;
    background: linear-gradient(135deg, #ffca02, #52cf2b);
    border-radius: 999px;
    padding: 0.28rem 0.6rem;
    margin-bottom: 0.6rem;
}

.product-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(37, 155, 253, 0.1), transparent);
    opacity: 0;
    transition: opacity var(--transition);
    pointer-events: none;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:hover {
    border-color: var(--primary-blue);
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(37, 155, 253, 0.2);
}

.card-header {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.card-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

.card-price span {
    font-size: 2.5rem;
}

.card-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: -10px;
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-green));
    color: var(--dark-bg);
    padding: 8px 20px;
    font-weight: 700;
    font-size: 0.85rem;
    transform: rotate(45deg);
    box-shadow: 0 5px 15px rgba(255, 202, 2, 0.3);
}

.features-list {
    list-style: none;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.features-list li {
    padding: 0.75rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
}

.loading-spinner {
    text-align: center;
    color: var(--text-secondary);
    padding: 2rem;
}

/* ============================================
   TALENT MANAGEMENT SECTION
   ============================================ */

.talent-management {
    background: linear-gradient(135deg, var(--dark-secondary) 0%, var(--dark-tertiary) 100%);
}

.talent-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.talent-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.talent-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.talent-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
    transition: all var(--transition);
    text-align: center;
}

.talent-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-green);
}

.talent-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.talent-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.talent-card:hover {
    border-color: var(--primary-green);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(82, 207, 43, 0.15);
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about {
    background: var(--dark-bg);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    white-space: nowrap;
    min-width: 100%;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

.about-img {
    width: 100%;
    max-width: 500px;
    opacity: 0.8;
}

/* ============================================
   ENGAGE SECTION
   ============================================ */

.engage {
    background: linear-gradient(160deg, var(--dark-bg), #12192c 65%, var(--dark-secondary));
}

.modern-engage {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.engage-step {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(37, 155, 253, 0.05));
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all var(--transition);
    animation: rise-in 0.6s ease both;
}

.engage-step:nth-child(2) {
    animation-delay: 0.12s;
}

.engage-step:nth-child(3) {
    animation-delay: 0.24s;
}

.engage-step:hover {
    transform: translateY(-8px);
    border-color: rgba(37, 155, 253, 0.6);
    box-shadow: 0 15px 35px rgba(37, 155, 253, 0.18);
}

.step-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.step-number {
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    color: var(--primary-gold);
    font-weight: 700;
}

.step-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 155, 253, 0.16);
    color: var(--primary-blue);
}

.engage-step h3 {
    margin-bottom: 0.7rem;
    font-size: 1.22rem;
}

.engage-step p {
    margin: 0;
}

@keyframes rise-in {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   CALENDAR SECTION
   ============================================ */

.calendars {
    background: linear-gradient(160deg, var(--dark-secondary), var(--dark-bg));
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.calendar-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.4rem;
    text-align: left;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}

.calendar-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 202, 2, 0.65);
    box-shadow: 0 12px 28px rgba(255, 202, 2, 0.16);
}

.calendar-image {
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
    object-fit: contain;
}

.calendar-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.15rem;
}

.calendar-card p {
    margin-bottom: 1rem;
    flex: 1;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact {
    background: linear-gradient(135deg, var(--dark-secondary) 0%, var(--dark-tertiary) 100%);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all var(--transition);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-secondary);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-blue);
    box-shadow: 0 0 20px rgba(37, 155, 253, 0.2);
}

.form-status {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    display: none;
}

.form-status.success {
    display: block;
    background: rgba(82, 207, 43, 0.1);
    border: 1px solid var(--primary-green);
    color: var(--primary-green);
}

.form-status.error {
    display: block;
    background: rgba(255, 71, 87, 0.1);
    border: 1px solid #ff4757;
    color: #ff4757;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.info-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all var(--transition);
}

.info-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-gold);
}

.info-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.info-card a {
    color: var(--primary-blue);
    font-weight: 600;
    transition: color var(--transition);
}

.info-card a:hover {
    color: var(--primary-gold);
}

.info-card p {
    color: var(--text-secondary);
}

.info-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 202, 2, 0.1);
}

/* ============================================
   QUOTE POPUP
   ============================================ */

.quote-popup {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
}

.quote-popup.active {
    display: flex;
}

.quote-modal {
    background: linear-gradient(180deg, var(--dark-secondary), var(--dark-bg));
    border: 1px solid var(--border-color);
    border-radius: 18px;
    width: 100%;
    max-width: 760px;
    padding: 2rem;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    max-height: 92vh;
    overflow-y: auto;
}

.quote-modal h2 {
    margin-bottom: 0.5rem;
}

.quote-modal > p {
    margin-bottom: 1.25rem;
}

.quote-product-summary {
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.quote-product-summary h4 {
    margin-bottom: 0.75rem;
    color: var(--primary-gold);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-detail {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.product-detail p {
    margin: 0;
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 600;
}

.product-type-badge {
    display: inline-block;
    font-size: 0.7rem;
    color: #0a1020;
    background: linear-gradient(135deg, var(--primary-gold) 0%, #c4901d 100%);
    border-radius: 6px;
    padding: 0.35rem 0.65rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.quote-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.2rem;
    color: #b9c6e2;
}

.quote-price-row strong {
    color: #ffffff;
    font-size: 1.15rem;
}

.quote-action-buttons {
    display: flex;
    gap: 0.8rem;
}

.quote-action-buttons .btn {
    flex: 1;
}

#quoteConfirmBtn {
    cursor: pointer;
}

#quoteForm {
    display: grid;
    gap: 1rem;
}

#quoteForm .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

#quoteForm .form-group {
    display: flex;
    flex-direction: column;
}

#quoteForm .form-group label {
    color: #d8e0ef;
    font-size: 0.86rem;
    font-weight: 600;
    margin-bottom: 0.45rem;
}

#quoteForm input,
#quoteForm select,
#quoteForm textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid #2f3a52;
    border-radius: 10px;
    padding: 0.8rem 0.9rem;
    color: var(--text-primary);
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    transition: all var(--transition);
}

#quoteForm input::placeholder,
#quoteForm textarea::placeholder {
    color: #8f9bb2;
}

#quoteForm input:focus,
#quoteForm select:focus,
#quoteForm textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(37, 155, 253, 0.18);
    background: rgba(255, 255, 255, 0.07);
}

#quoteForm textarea {
    min-height: 120px;
    resize: vertical;
}

#quoteForm input[type="file"] {
    padding: 0.65rem;
    border-style: dashed;
}

#quoteForm .btn {
    width: 100%;
    margin-top: 0.25rem;
}

#quoteStatus {
    margin-top: 0.3rem;
}

.close-quote {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    background: transparent;
    color: var(--text-primary);
    cursor: pointer;
    font-size: 1.5rem;
    line-height: 1;
}

.close-quote:hover {
    background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 768px) {
    #quoteForm .form-row {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   BRANDS, BANNERS, FAQ
   ============================================ */

.brands-section {
    background: linear-gradient(180deg, var(--dark-bg), var(--dark-secondary));
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.brands-title {
    font-size: 1.75rem;
    text-align: center;
    margin-bottom: 2rem;
}

.brands-scroll {
    overflow: hidden;
    border: none;
    background: transparent;
    border-radius: 0;
}

.brands-track {
    display: flex;
    align-items: center;
    width: max-content;
    gap: 2.5rem;
    padding: 1.75rem 1rem;
    animation: scroll 26s linear infinite;
    will-change: transform;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.brand-item {
    flex: 0 0 auto;
    width: 145px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 0;
    background: transparent;
}

.brand-item img {
    max-width: 120px;
    max-height: 40px;
    object-fit: contain;
    opacity: 0.8;
    filter: grayscale(100%);
    transition: all var(--transition);
}

.brand-item img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.brand-logo {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-primary);
    opacity: 0.7;
    transition: all var(--transition);
    letter-spacing: 0.5px;
}

.brand-item:hover .brand-logo {
    opacity: 1;
    transform: scale(1.05);
}

/* Brand-specific colors */
.brand-hubspot .brand-logo { color: #FF6B35; }
.brand-shopify .brand-logo { color: #96BE00; }
.brand-slack .brand-logo { color: #36C5F0; }
.brand-stripe .brand-logo { color: #635BFF; }
.brand-clickup .brand-logo { color: #7B68EE; }
.brand-calendly .brand-logo { color: #006B63; }

/* ============================================
   TEAM SECTION
   ============================================ */

.team {
    background: linear-gradient(160deg, var(--dark-bg), var(--dark-secondary));
}

.modern-team {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.team-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: all var(--transition);
}

.team-card:hover {
    transform: translateY(-8px);
    border-color: rgba(37, 155, 253, 0.6);
    box-shadow: 0 16px 35px rgba(37, 155, 253, 0.18);
}

.team-photo {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.team-content {
    padding: 1.2rem;
}

.team-content h3 {
    margin-bottom: 0.3rem;
}

.team-role {
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.team-bio {
    font-size: 0.95rem;
    margin-bottom: 0.9rem;
}

.team-socials {
    display: flex;
    gap: 0.6rem;
}

.team-socials a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
}

.team-socials a:hover {
    color: var(--primary-gold);
    border-color: var(--primary-gold);
}

.banners {
    background: var(--dark-bg);
}

.banners-container {
    display: grid;
    gap: 1rem;
}

.banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, rgba(37, 155, 253, 0.15), rgba(255, 202, 2, 0.08));
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 1rem 1.25rem;
}

.banner.discount {
    border-color: rgba(82, 207, 43, 0.4);
    background: linear-gradient(135deg, rgba(82, 207, 43, 0.2), rgba(24, 38, 18, 0.35));
}

.banner.offer {
    border-color: rgba(255, 202, 2, 0.45);
    background: linear-gradient(135deg, rgba(255, 202, 2, 0.2), rgba(56, 42, 4, 0.35));
}

.banner.feature {
    border-color: rgba(37, 155, 253, 0.55);
    background: linear-gradient(135deg, rgba(37, 155, 253, 0.22), rgba(9, 29, 53, 0.4));
}

.banner.announcement {
    border-color: rgba(170, 160, 255, 0.45);
    background: linear-gradient(135deg, rgba(140, 120, 255, 0.18), rgba(35, 22, 71, 0.35));
}

.banner-content h3 {
    margin-bottom: 0.2rem;
    font-size: 1.1rem;
}

.banner-content p {
    margin: 0;
    font-size: 0.95rem;
}

.banner-badge {
    background: var(--primary-gold);
    color: var(--dark-bg);
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.85rem;
    white-space: nowrap;
}

.banner.discount .banner-badge {
    background: var(--primary-green);
}

.banner.offer .banner-badge {
    background: var(--primary-gold);
}

.banner.feature .banner-badge {
    background: var(--primary-blue);
    color: #ffffff;
}

.banner.announcement .banner-badge {
    background: #b09bff;
    color: #0a1020;
}

/* ============================================
   PREVIOUS WORKS
   ============================================ */

.previous-works {
    background: linear-gradient(170deg, #0b1120, #111a2f);
    padding: 60px 0;
}

.works-tabs {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.works-tab-btn {
    padding: 0.7rem 1.3rem;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: #9fb0cf;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition);
}

.works-tab-btn:hover,
.works-tab-btn.active {
    background: linear-gradient(135deg, var(--primary-gold) 0%, #c4901d 100%);
    color: #0a1020;
    border-color: var(--primary-gold);
}

.works-grid-wrap {
    overflow: visible;
    width: 100%;
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    width: 100%;
}

.work-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 0;
    overflow: hidden;
    transition: all var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.work-card:hover {
    border-color: var(--primary-gold);
    background: rgba(255, 255, 255, 0.07);
}

.work-frame {
    width: 100%;
    height: 200px;
    border: 0;
    border-radius: 0;
    background: #0c1221;
    flex-shrink: 0;
}

.work-card-content {
    padding: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.work-tag {
    display: inline-block;
    font-size: 0.7rem;
    color: #0a1020;
    background: var(--primary-gold);
    border-radius: 999px;
    padding: 0.25rem 0.6rem;
    margin-bottom: 0.5rem;
    width: fit-content;
}

.work-card h4 {
    margin-bottom: 0.4rem;
    font-size: 1.05rem;
    flex: 1;
}

.work-card-footer {
    display: flex;
    justify-content: flex-end;
    padding-top: 0.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.work-redirect-btn {
    width: 32px;
    height: 32px;
    border: 1px solid #30405f;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: var(--primary-gold);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    font-size: 0.95rem;
}

.work-redirect-btn:hover {
    background: linear-gradient(135deg, var(--primary-gold) 0%, #c4901d 100%);
    color: #0a1020;
    border-color: var(--primary-gold);
}

/* ============================================
   VIDEO POPUP
   ============================================ */

.video-popup {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2200;
    padding: 1rem;
}

.video-popup.active {
    display: flex;
}

.video-modal {
    width: min(960px, 96vw);
    background: #0f1628;
    border: 1px solid #26344f;
    border-radius: 14px;
    padding: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    max-height: 90vh;
}

.video-header {
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.video-header h3 {
    margin: 0;
    font-size: 1.2rem;
    color: #ffffff;
}

.video-frame-wrap {
    border-radius: 0;
    overflow: hidden;
    flex: 1;
    background: #000;
}

.video-frame-wrap iframe {
    width: 100%;
    height: min(520px, 60vh);
    border: 0;
    background: #000;
}

.video-footer {
    padding: 1.2rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    gap: 1rem;
}

.video-footer .btn {
    flex: 1;
}

.close-video {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border: 1px solid #30405f;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    cursor: pointer;
    font-size: 1.4rem;
    transition: all var(--transition);
    z-index: 10;
}

.close-video:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
}

/* ============================================
   PURCHASE MODAL
   ============================================ */

.purchase-popup {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.85);
    z-index: 2300;
    padding: 1.5rem;
    animation: fadeIn 0.3s ease;
}

.purchase-popup.active {
    display: flex;
}

.purchase-modal {
    width: min(900px, 95vw);
    background: linear-gradient(135deg, rgba(15, 22, 40, 0.95), rgba(26, 31, 46, 0.95));
    border: 1px solid rgba(37, 155, 253, 0.3);
    border-radius: 18px;
    backdrop-filter: blur(10px);
    position: relative;
    display: flex;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.purchase-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 3rem;
    width: 100%;
}

.purchase-product-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-visual {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(37, 155, 253, 0.2), rgba(255, 202, 2, 0.1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-blue);
}

#purchaseTitle {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-info h3 {
    font-size: 1.4rem;
    margin: 1rem 0 0.5rem 0;
    color: #ffffff;
}

.product-description {
    color: var(--text-secondary);
    margin: 0.8rem 0 1.5rem 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.features-section {
    margin: 1.5rem 0;
}

.features-section h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary-gold);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.product-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.product-features li {
    display: flex;
    align-items: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.product-features li::before {
    content: '✓';
    color: var(--primary-green);
    font-weight: bold;
    margin-right: 0.8rem;
    font-size: 1rem;
}

.price-display {
    background: linear-gradient(135deg, rgba(255, 202, 2, 0.1), rgba(37, 155, 253, 0.1));
    border: 1px solid rgba(255, 202, 2, 0.2);
    border-radius: 12px;
    padding: 1.2rem;
    margin-top: 1.5rem;
    text-align: center;
}

.price-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.price-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-gold);
    margin-top: 0.5rem;
}

.purchase-form-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-header {
    margin-bottom: 2rem;
}

.form-header h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.form-header p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

#purchaseForm .form-group {
    margin-bottom: 1.3rem;
}

#purchaseForm label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

#purchaseForm input,
#purchaseForm select {
    width: 100%;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    transition: all var(--transition);
}

#purchaseForm input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

#purchaseForm input:focus,
#purchaseForm select:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(37, 155, 253, 0.15);
}

#purchaseForm input.error {
    border-color: #ff6b6b;
    background-color: rgba(255, 107, 107, 0.1);
}

#purchaseForm small {
    display: block;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 0.3rem;
}

.btn-large {
    padding: 1rem 1.5rem;
    font-size: 1rem;
    width: 100%;
    margin-top: 0.5rem;
}

.btn-large i {
    margin-right: 0.5rem;
}

#purchaseStatus {
    margin-top: 0.8rem;
    padding: 0.8rem;
    border-radius: 8px;
    display: none;
}

#purchaseStatus.active {
    display: block;
}

.error-message {
    background: rgba(255, 107, 107, 0.15);
    color: #ff9999;
    padding: 0.7rem;
    border-radius: 6px;
    font-size: 0.9rem;
}

.success-message {
    background: rgba(82, 207, 43, 0.15);
    color: #7cff7c;
    padding: 0.7rem;
    border-radius: 6px;
    font-size: 0.9rem;
}

.security-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.security-badge i {
    color: var(--primary-green);
    font-size: 0.9rem;
}

.close-purchase {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    cursor: pointer;
    font-size: 1.6rem;
    transition: all var(--transition);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-purchase:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

/* Mobile responsiveness for purchase modal */
@media (max-width: 768px) {
    .purchase-modal {
        max-height: 95vh;
    }
    
    .purchase-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .product-visual {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    #purchaseTitle {
        font-size: 1.3rem;
    }
    
    .product-info h3 {
        font-size: 1.2rem;
    }
    
    .price-value {
        font-size: 2rem;
    }
    
    .close-purchase {
        width: 36px;
        height: 36px;
        font-size: 1.3rem;
    }
}

.faq {
    background: linear-gradient(135deg, var(--dark-secondary) 0%, var(--dark-tertiary) 100%);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 0.9rem;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
}

.faq-question {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.1rem;
    font-weight: 600;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
}

.faq-item.active .faq-answer {
    max-height: 260px;
}

.faq-answer p {
    padding: 0 1.1rem 1rem;
    margin: 0;
}

.faq-icon {
    color: var(--primary-blue);
    transition: transform var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--dark-secondary);
    border-top: 1px solid var(--border-color);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-secondary);
    transition: color var(--transition);
}

.footer-section ul li a:hover {
    color: var(--primary-gold);
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 202, 2, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    transition: all var(--transition);
}

.social-icon:hover {
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-blue));
    transform: translateY(-5px);
    color: var(--dark-bg);
}

.footer-bottom {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-bottom a {
    color: var(--primary-gold);
    transition: color var(--transition);
}

.footer-bottom a:hover {
    color: var(--primary-blue);
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.testimonials-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(37, 155, 253, 0.05), rgba(82, 207, 43, 0.05));
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.testimonials-tabs {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.testimonial-tab-btn {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    border-radius: 999px;
    padding: 0.7rem 1.25rem;
    cursor: pointer;
    font-weight: 600;
    transition: all var(--transition);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.testimonial-tab-btn[data-testimonial-tab="shoutouts"] {
    border-color: rgba(82, 207, 43, 0.35);
    background: linear-gradient(135deg, rgba(82, 207, 43, 0.13), rgba(14, 32, 24, 0.55));
}

.testimonial-tab-btn[data-testimonial-tab="reviews"] {
    border-color: rgba(255, 202, 2, 0.35);
    background: linear-gradient(135deg, rgba(255, 202, 2, 0.14), rgba(25, 24, 14, 0.55));
}

.testimonial-tab-btn:hover {
    transform: translateY(-2px);
    color: var(--text-primary);
}

.testimonial-tab-btn[data-testimonial-tab="shoutouts"]:hover,
.testimonial-tab-btn[data-testimonial-tab="shoutouts"].active {
    border-color: var(--primary-green);
    background: linear-gradient(135deg, rgba(82, 207, 43, 0.28), rgba(16, 48, 28, 0.75));
    box-shadow: 0 8px 20px rgba(82, 207, 43, 0.2);
    color: #ecffe7;
}

.testimonial-tab-btn[data-testimonial-tab="reviews"]:hover,
.testimonial-tab-btn[data-testimonial-tab="reviews"].active {
    border-color: var(--primary-gold);
    background: linear-gradient(135deg, rgba(255, 202, 2, 0.3), rgba(37, 155, 253, 0.22));
    box-shadow: 0 8px 20px rgba(255, 202, 2, 0.24);
    color: #fffcec;
}

.testimonial-tab-content {
    display: none;
}

.testimonial-tab-content.active {
    display: block;
}

.shoutouts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
    margin-top: 2rem;
}

.shoutout-card {
    background: var(--dark-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
}

.shoutout-video {
    aspect-ratio: 16 / 9;
    width: 100%;
    border: 0;
    display: block;
}

.shoutout-meta {
    padding: 0.9rem 1rem 1.1rem;
}

.shoutout-meta h4 {
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
}

.shoutout-meta p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin: 0;
}

.testimonial-card {
    background: var(--dark-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    border-color: var(--primary-blue);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(37, 155, 253, 0.1);
}

.testimonial-header {
    margin-bottom: 1rem;
}

.testimonial-stars {
    font-size: 1.1rem;
    letter-spacing: 0.2rem;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    flex-grow: 1;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.author-details h4 {
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.author-details p {
    font-size: 0.8rem;
    color: var(--primary-gold);
    margin-bottom: 0;
}

/* ============================================
   GALLERY SECTION
   ============================================ */

.gallery-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(82, 207, 43, 0.05), rgba(255, 202, 2, 0.05));
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 1;
    cursor: pointer;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 155, 253, 0.9), rgba(82, 207, 43, 0.9));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    opacity: 0;
    transition: all var(--transition);
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.gallery-overlay p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

/* ============================================
   DYNAMIC WORK CARDS (for portfolio section)
   ============================================ */

.work-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.work-content {
    padding: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.work-content h3 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.work-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    flex: 1;
}

.work-category {
    display: inline-block;
    font-size: 0.7rem;
    color: #0a1020;
    background: var(--primary-gold);
    border-radius: 999px;
    padding: 0.25rem 0.6rem;
    width: fit-content;
    margin-bottom: 0.75rem;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .about-content,
    .contact-container,
    .hero-content {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }

    .modern-engage,
    .calendar-grid,
    .modern-team {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(10, 15, 30, 0.98);
        padding: 2rem 1rem;
        gap: 1rem;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-dropdown {
        width: 100%;
    }

    .nav-dropdown-toggle {
        width: 100%;
        justify-content: space-between;
        padding: 0.25rem 0;
    }

    .nav-dropdown-menu {
        position: static;
        min-width: 100%;
        margin-top: 0.5rem;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        box-shadow: none;
    }

    .nav-dropdown.open .nav-dropdown-menu {
        display: block;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .quote-modal {
        padding: 1.5rem;
    }

    .banner {
        flex-direction: column;
        align-items: flex-start;
    }

    .work-card {
        width: 100%;
    }

    .works-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .works-tab-btn {
        font-size: 0.8rem;
        padding: 0.6rem 1rem;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(10px, 10px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid,
    .products-grid,
    .talent-grid {
        grid-template-columns: 1fr;
    }
    
    .products-tabs {
        flex-direction: column;
    }
    
    .tab-btn {
        width: 100%;
    }
    
    .hero-visual {
        display: none;
    }
    
    section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .card-price {
        font-size: 2rem;
    }
    
    .card-price span {
        font-size: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }

    .works-grid {
        grid-template-columns: 1fr;
    }

    .works-tab-btn {
        font-size: 0.75rem;
        padding: 0.5rem 0.8rem;
    }
}
