/* ==========================================================================
   Sections CSS - Brolik Theme
   ========================================================================== */

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(12, 12, 12, 0) 0%, rgba(12, 12, 12, 0.64) 50%, rgba(12, 12, 12, 1) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    padding-top: 5rem;
}

.hero-inner {
    max-width: 56rem;
    margin: 0 auto;
    text-align: center;
}

.hero-title {
    font-size: 1.875rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    margin-bottom: 1.5rem;
    min-height: 80px;
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 2.25rem;
        min-height: 100px;
    }
}

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

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

.hero-subtitle {
    font-size: 1rem;
    color: var(--color-card-foreground);
    max-width: 42rem;
    margin: 0 auto 1rem;
}

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

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

.hero-description {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 36rem;
    margin: 0 auto 2rem;
}

@media (min-width: 640px) {
    .hero-description {
        font-size: 1rem;
    }
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .hero-cta {
        flex-direction: row;
    }
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    border-radius: 9999px;
    font-size: 0.875rem;
}

.trust-badge .icon,
.trust-badge i {
    width: 16px;
    height: 16px;
    color: var(--color-primary);
}

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

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 9999px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 0.5rem;
}

.scroll-dot {
    width: 4px;
    height: 8px;
    background-color: var(--color-primary);
    border-radius: 9999px;
}

/* Typewriter */
.typewriter {
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-family: "Roboto", -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 900;
    letter-spacing: 1.3px;
    line-height: 94px;
}

.typewriter::after {
    content: '|';
    animation: blink 1s step-end infinite;
    color: var(--color-primary);
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

/* ==========================================================================
   Slogan Section
   ========================================================================== */
.slogan-section {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .slogan-section {
        padding: 7rem 0;
    }
}

.slogan-glow {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.slogan-glow--primary::before {
    content: '';
    width: 600px;
    height: 300px;
    background-color: rgba(0, 188, 212, 0.15);
    border-radius: 50%;
    filter: blur(120px);
    animation: pulse 3s ease-in-out infinite;
}

.slogan-glow--secondary::before {
    content: '';
    width: 400px;
    height: 200px;
    background-color: rgba(0, 188, 212, 0.1);
    border-radius: 50%;
    filter: blur(80px);
    animation: pulse 3s ease-in-out infinite 1s;
}

.slogan-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.slogan-pill {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.slogan-pill__glow {
    position: absolute;
    inset: -8px;
    border-radius: 9999px;
    background: linear-gradient(to right, rgba(0, 188, 212, 0.4), rgba(0, 188, 212, 0.3), rgba(0, 188, 212, 0.4));
    filter: blur(32px);
    opacity: 0.5;
    animation: pulse 3s ease-in-out infinite;
}

.slogan-pill__inner {
    position: relative;
    padding: 1.25rem 2rem;
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(40px);
    border: 1px solid rgba(0, 188, 212, 0.2);
    border-radius: 9999px;
    box-shadow: 0 0 60px -15px rgba(0, 188, 212, 0.3);
}

@media (min-width: 640px) {
    .slogan-pill__inner {
        padding: 1.5rem 3rem;
    }
}

@media (min-width: 768px) {
    .slogan-pill__inner {
        padding: 1.75rem 4rem;
    }
}

.slogan-text {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

@media (min-width: 640px) {
    .slogan-text {
        font-size: 1.5rem;
    }
}

@media (min-width: 768px) {
    .slogan-text {
        font-size: 1.875rem;
    }
}

.slogan-text__muted {
    color: rgba(255, 255, 255, 0.8);
}

.slogan-dot {
    margin: 0 0.75rem;
    color: rgba(0, 188, 212, 0.6);
}

@media (min-width: 640px) {
    .slogan-dot {
        margin: 0 1rem;
    }
}

.slogan-text__highlight {
    font-weight: 700;
}

/* ==========================================================================
   About Section - Mosaic Redesign
   ========================================================================== */
.about-section--mosaic {
    padding: 10rem 0;
    background: radial-gradient(circle at 10% 10%, rgba(197, 160, 89, 0.03) 0%, transparent 40%),
                radial-gradient(circle at 90% 90%, rgba(197, 160, 89, 0.03) 0%, transparent 40%);
}

.logo-white-filter {
    filter: brightness(0) invert(1);
}

/* Top Introduction */
.about-top-full {
    text-align: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 10rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.about-logo-hero {
    margin-bottom: 4rem;
}

.about-logo-hero img {
    max-height: 100px;
    width: auto;
}

.about-intro-lead {
    font-size: 1.3125rem;
    line-height: 1.5;
    color: white;
    font-weight: 500;
    letter-spacing: -0.02em;
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.about-intro-lead strong {
    color: var(--color-primary);
}

/* Horizontal text layout for about description */
.about-description-horizontal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    width: 100%;
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
    text-align: center;
}

.about-description-horizontal p {
    margin: 0;
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--color-foreground);
    flex: 1 1 300px;
}

/* Mosaic Grid */
.about-mosaic {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-mosaic {
        grid-template-columns: 1fr 1.2fr 1fr;
        gap: 3rem;
    }
}

.mosaic-side {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mosaic-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 32px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.mosaic-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--color-primary);
    transform: translateY(-5px);
}

.mosaic-card__logo {
    margin-bottom: 1.5rem;
}

.mosaic-card__logo img {
    max-height: 24px;
}

.mosaic-card__title {
    font-size: 1.25rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-weight: 700;
}

.mosaic-card__text {
    font-size: 0.95rem;
    color: var(--color-muted-foreground);
    line-height: 1.7;
}

.mosaic-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(197, 160, 89, 0.1);
    color: var(--color-primary);
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

/* Center Image */
.mosaic-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mosaic-image-frame {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.mosaic-main-image {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.5));
    transition: transform 0.8s ease;
}

.mosaic-image-frame:hover .mosaic-main-image {
    transform: scale(1.05);
}

.mosaic-image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 593px;
    height: 549px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.15) 0%, transparent 70%);
    z-index: -1;
}

/* Footer Dashboard */
.about-footer-dashboard {
    margin-top: 8rem;
    padding-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.dashboard-section-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 3rem;
    text-align: center;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 6rem;
}

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

@media (min-width: 1024px) {
    .dashboard-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem;
    }
}

.dashboard-node {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    padding: 2rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.dashboard-node:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(197, 160, 89, 0.3);
    transform: translateY(-5px);
}

.node-icon {
    font-size: 2rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.node-content strong {
    display: block;
    font-size: 1rem;
    color: white;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.node-content p {
    font-size: 0.9rem;
    color: var(--color-muted-foreground);
    line-height: 1.6;
    margin: 0;
}

/* Fishing Tech Dashboard */
.fishing-tech-dashboard {
    margin-top: 6rem;
    padding-top: 4rem;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
}

.fishing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .fishing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.fishing-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(197, 160, 89, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.fishing-card:hover {
    border-color: var(--color-primary);
    background: rgba(197, 160, 89, 0.05);
    transform: translateY(-8px);
}

.fishing-card i {
    width: 32px;
    height: 32px;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.fishing-card h4 {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 600;
}

.fishing-card p {
    font-size: 0.85rem;
    color: var(--color-muted-foreground);
    line-height: 1.5;
    margin: 0;
}

.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }
.text-center { text-align: center; }

/* ==========================================================================
   Why Brolik Section
   ========================================================================== */
.reasons-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 72rem;
    margin: 0 auto;
}

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

.reason-card {
    background-color: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    transition: all 0.5s ease;
}

.reason-card:hover {
    border-color: rgba(0, 188, 212, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 188, 212, 0.05);
}

.reason-card__icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    background-color: rgba(0, 188, 212, 0.1);
    border-radius: 50%;
    transition: all 0.5s ease;
}

.reason-card:hover .reason-card__icon {
    transform: scale(1.1);
    background-color: rgba(0, 188, 212, 0.2);
}

.reason-card__icon i {
    width: 32px;
    height: 32px;
    color: var(--color-primary);
}

.reason-card__title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.reason-card__description {
    color: var(--color-muted-foreground);
}

/* ==========================================================================
   Product Identity Section
   ========================================================================== */
.product-identity-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 72rem;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .product-identity-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem;
        align-items: center;
    }
}

.product-identity__image {
    order: 2;
}

@media (min-width: 1024px) {
    .product-identity__image {
        order: 1;
    }
}

.product-identity__image-wrapper {
    position: relative;
    aspect-ratio: 4/3;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 40px;
    padding: 1rem;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.product-identity__image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    transition: transform 0.8s ease;
}

.product-identity__image:hover .product-identity__image-wrapper {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(197, 160, 89, 0.2);
    transform: translateY(-10px);
}

.product-identity__image:hover .product-identity__image-wrapper img {
    transform: scale(1.02);
}

.product-identity__content {
    order: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .product-identity__content {
        order: 2;
    }
}

.product-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.product-badges .badge {
    transition: all 0.3s ease;
}

.product-badges .badge:hover {
    background-color: rgba(0, 188, 212, 0.1);
    border-color: rgba(0, 188, 212, 0.5);
}

/* ==========================================================================
   Technical Specs Section
   ========================================================================== */
#teknik {
    padding-top: 13px;
}
.specs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 72rem;
    margin: 0 auto;
}

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

.specs-card,
.features-card {
    background-color: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    overflow: hidden;
}

.specs-card__header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem;
    border-bottom: 1px solid var(--color-border);
}

.specs-card__header i {
    width: 20px;
    height: 20px;
    color: var(--color-primary);
}

.specs-card__header h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
}

.specs-card__content {
    padding: 1.5rem;
}

.dimensions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

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

.dimension-item {
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    text-align: center;
    transition: all 0.3s ease;
}

.dimension-item:hover {
    border-color: rgba(0, 188, 212, 0.3);
    background-color: rgba(255, 255, 255, 0.05);
}

.dimension-item i {
    width: 20px;
    height: 20px;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.dimension-label {
    display: block;
    font-size: 0.875rem;
    color: var(--color-muted-foreground);
    margin-bottom: 0.25rem;
}

.dimension-value {
    font-weight: 600;
}

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

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background-color: rgba(0, 188, 212, 0.05);
    border: 1px solid rgba(0, 188, 212, 0.2);
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

.guarantee-item:hover {
    background-color: rgba(0, 188, 212, 0.1);
    transform: translateX(4px);
}

.guarantee-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 188, 212, 0.1);
    border-radius: 50%;
}

.guarantee-icon i {
    width: 24px;
    height: 24px;
    color: var(--color-primary);
}

.specs-download-btn {
    width: 100%;
    margin-top: 1.5rem;
}

.features-card {
    margin-top: 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

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

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

.feature-box {
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

.feature-box:hover {
    border-color: rgba(0, 188, 212, 0.3);
    background-color: rgba(255, 255, 255, 0.05);
    transform: translateY(-4px);
}

.feature-box i {
    width: 20px;
    height: 20px;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
}

.feature-box h4 {
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.optional-mark {
    color: var(--color-primary);
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1;
    cursor: help;
}

.specs-footer-note {
    margin-top: 2rem;
    text-align: right;
    opacity: 0.6;
}

.specs-footer-note p {
    font-size: 0.75rem;
    font-weight: 300;
    font-style: italic;
    color: var(--color-muted-foreground);
}

.feature-box p {
    font-size: 0.75rem;
    color: var(--color-muted-foreground);
}

/* ==========================================================================
   Motors Section
   ========================================================================== */
.motors-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 60rem;
    margin: 0 auto;
}

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

.motor-card {
    position: relative;
    background-color: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: all 0.5s ease;
}

.motor-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 188, 212, 0.05);
}

.motor-card--popular {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 1px rgba(0, 188, 212, 0.2);
}

.motor-card--popular:hover {
    box-shadow: 0 20px 40px rgba(0, 188, 212, 0.1);
}

.motor-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.25rem 1rem;
    background-color: var(--color-primary);
    color: var(--color-primary-foreground);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 9999px;
}

.motor-card__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-border);
}

.motor-specs {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.motor-spec {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius);
    transition: background-color 0.3s ease;
}

.motor-spec:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.motor-spec__label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-muted-foreground);
    font-size: 0.875rem;
}

.motor-spec__label i {
    width: 16px;
    height: 16px;
}

.motor-spec__value {
    font-size: 0.875rem;
    font-weight: 500;
}

.motors-footnote {
    text-align: center;
    margin-top: 2rem;
}

.motors-footnote p {
    font-size: 0.875rem;
    color: var(--color-muted-foreground);
    margin-bottom: 2rem;
}

/* ==========================================================================
   Product Viewer Section
   ========================================================================== */
#products {
    padding-top: 14px;
}
.product-viewer {
    background-color: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: 1rem;
    overflow: hidden;
    max-width: 60rem;
    margin: 0 auto;
}

.product-viewer__main {
    position: relative;
    aspect-ratio: 16/10;
    cursor: grab;
    user-select: none;
}

.product-viewer__main:active {
    cursor: grabbing;
}

.viewer-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.viewer-image.active {
    opacity: 1;
}

.viewer-indicator,
.viewer-label {
    position: absolute;
    left: 1rem;
    z-index: 10;
}

.viewer-indicator {
    top: 1rem;
}

.viewer-label {
    bottom: 1rem;
}

.viewer-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    z-index: 10;
    transition: all 0.3s ease;
}

.viewer-nav:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.viewer-nav--prev {
    left: 1rem;
}

.viewer-nav--next {
    right: 1rem;
}

.viewer-nav i {
    width: 20px;
    height: 20px;
}

.viewer-controls {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.viewer-control {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.viewer-control:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.viewer-control.active {
    background-color: var(--color-primary);
    color: var(--color-primary-foreground);
}

.viewer-control i {
    width: 20px;
    height: 20px;
}

.viewer-slider {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-top: 1px solid var(--color-border);
    background-color: rgba(255, 255, 255, 0.02);
}

.viewer-slider__label {
    font-size: 0.875rem;
    color: var(--color-muted-foreground);
}

.viewer-range {
    flex: 1;
    -webkit-appearance: none;
    appearance: none;
    height: 4px;
    background: var(--color-border);
    border-radius: 2px;
    outline: none;
}

.viewer-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    background: var(--color-primary);
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.viewer-range::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.viewer-thumbnails {
    display: flex;
    gap: 0.5rem;
    padding: 1rem;
    border-top: 1px solid var(--color-border);
    overflow-x: auto;
    background-color: rgba(255, 255, 255, 0.02);
}

.viewer-thumb {
    flex-shrink: 0;
    width: 80px;
    height: 56px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.viewer-thumb:hover {
    border-color: rgba(255, 255, 255, 0.3);
}

.viewer-thumb.active {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 2px rgba(0, 188, 212, 0.2);
}

.viewer-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.viewer-hint {
    text-align: center;
    margin-top: 1.5rem;
}

.viewer-hint p {
    font-size: 0.875rem;
    color: var(--color-muted-foreground);
}

/* ==========================================================================
   Configurator Section
   ========================================================================== */
.configurator {
    max-width: 100%;
    margin: 0 auto;
    overflow-x: hidden;
}

.configurator-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    padding: 0 10px;
}

.config-step {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: #ffffff !important;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.config-step span {
    color: #ffffff !important;
}

.config-step i {
    width: 16px;
    height: 16px;
    color: inherit;
}

.config-step:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.config-step.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #ffffff !important;
    box-shadow: 0 0 20px rgba(197, 160, 89, 0.3);
}

@media (max-width: 640px) {
    .config-step {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }
    .config-step i {
        width: 14px;
        height: 14px;
    }
}

.step-arrow {
    width: 16px;
    height: 16px;
    color: #ffffff;
    opacity: 0.5;
}

.configurator-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    width: 100%;
}

@media (min-width: 1024px) {
    .configurator-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

.config-preview {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.config-preview__3d {
    position: relative;
    aspect-ratio: 16/10;
    min-height: 280px;
    border-radius: 1.5rem;
    overflow: hidden;
    background-color: #121212;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    width: 100%;
}

@media (min-width: 1024px) {
    .config-preview__3d {
        min-height: 350px;
    }
}

.config-preview__3d canvas {
    display: block;
    width: 100% !important;
    height: 100% !important;
}

/* ... existing config-loader styles ... */

.config-panel {
    background-color: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 1rem;
    width: 100%;
    overflow-x: hidden;
}

@media (min-width: 768px) {
    .config-panel {
        padding: 1.5rem;
    }
}

.equipment-toggles {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

@media (min-width: 480px) {
    .equipment-toggles {
        flex-direction: row;
        flex-wrap: wrap;
    }
    .equipment-toggles .equipment-item {
        flex: 1;
        min-width: 140px;
    }
}

.pdf-preview-box iframe {
    width: 100%;
    height: 350px;
    border: none;
}

@media (min-width: 768px) {
    .pdf-preview-box iframe {
        height: 450px;
    }
}

.config-panel__step {
    display: none;
}

.config-panel__step.active {
    display: block;
}

.config-panel__title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.config-panel__title i {
    width: 20px;
    height: 20px;
    color: var(--color-primary);
}

.config-option {
    margin-bottom: 1.5rem;
}

.config-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.color-picker {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.color-swatch {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
}

.color-swatch:hover {
    transform: scale(1.1);
}

.color-swatch.active {
    border-color: white;
    box-shadow: 0 0 0 2px var(--color-primary);
}

.equipment-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-height: 400px;
    overflow-y: auto;
}

.equipment-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.02);
    border: 2px solid var(--color-border);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.3s ease;
}

.equipment-item:hover {
    border-color: rgba(0, 188, 212, 0.5);
}

.equipment-item:has(input:checked) {
    border-color: var(--color-primary);
    background-color: rgba(0, 188, 212, 0.05);
}

.equipment-item input {
    margin-top: 2px;
    accent-color: var(--color-primary);
}

.equipment-info {
    flex: 1;
}

.equipment-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.equipment-name {
    font-size: 0.875rem;
    font-weight: 500;
}

.equipment-price {
    font-size: 0.75rem;
    color: var(--color-primary);
    font-weight: 500;
}

.equipment-desc {
    font-size: 0.75rem;
    color: var(--color-muted-foreground);
    margin-top: 0.25rem;
}

.motor-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.motor-option:hover {
    border-color: rgba(0, 188, 212, 0.5);
}

.motor-option.selected,
.motor-option:has(input:checked) {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 2px rgba(0, 188, 212, 0.2);
}

.motor-option input {
    display: none;
}

.motor-option__content {
    flex: 1;
}

.motor-option__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.motor-option__name {
    font-weight: 500;
}

.motor-option__specs {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--color-muted-foreground);
}

.motor-check {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-primary);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.motor-option:has(input:checked) .motor-check {
    opacity: 1;
}

.motor-check i {
    width: 14px;
    height: 14px;
    color: var(--color-primary-foreground);
}

.config-summary {
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius);
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.config-summary h4 {
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.summary-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.5rem 1rem;
    font-size: 0.875rem;
}

.summary-label {
    color: var(--color-muted-foreground);
}

.summary-value {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.config-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.config-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border);
}

/* ==========================================================================
   Gallery Section
   ========================================================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

/* ==========================================================================
   Design Section (Sizin İçin Tasarlıyoruz)
   ========================================================================== */
.design-section {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
}

.design-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 80rem;
    margin: 0 auto;
    align-items: center;
}

@media (min-width: 1024px) {
    .design-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(3, auto);
        gap: 3rem;
    }

    .design-center {
        grid-column: 2;
        grid-row: 2;
    }

    .design-item--1 { grid-column: 1; grid-row: 1; }
    .design-item--2 { grid-column: 2; grid-row: 1; }
    .design-item--3 { grid-column: 3; grid-row: 1; }
    .design-item--4 { grid-column: 1; grid-row: 2; }
    .design-item--5 { grid-column: 3; grid-row: 2; }
    .design-item--6 { grid-column: 1; grid-row: 3; }
    .design-item--7 { grid-column: 2; grid-row: 3; }
    .design-item--8 { grid-column: 3; grid-row: 3; }
}

.design-item {
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    transition: all 0.3s ease;
    text-align: center;
}

.design-item:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: var(--color-primary);
    transform: translateY(-5px);
}

.design-item__title {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--color-foreground);
}

.design-item__text {
    font-size: 0.875rem;
    color: var(--color-muted-foreground);
    line-height: 1.6;
}

.design-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.design-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 550px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 40px;
    padding: 1rem;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.design-image-wrapper:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(197, 160, 89, 0.2);
    transform: translateY(-10px);
}

.design-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 30px;
    transition: transform 0.8s ease;
    z-index: 2;
    position: relative;
}

.design-image-wrapper:hover .design-image {
    transform: scale(1.02);
}

.design-image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(0, 188, 212, 0.15) 0%, transparent 70%);
    filter: blur(40px);
    z-index: 1;
    pointer-events: none;
}

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

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

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 1rem;
}

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

.gallery-title {
    font-size: 0.875rem;
    font-weight: 500;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-title {
    transform: translateY(0);
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */
.testimonials-section {
    padding-top: 26px;
}
.testimonials-slider {
    overflow: hidden;
    margin-bottom: 2rem;
}

.testimonials-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s ease;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 1rem);
    min-width: 280px;
    background-color: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: all 0.5s ease;
}

@media (max-width: 1023px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 0.75rem);
    }
}

@media (max-width: 767px) {
    .testimonial-card {
        flex: 0 0 100%;
    }
}

.testimonial-card:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 188, 212, 0.05);
}

.testimonial-quote {
    width: 32px;
    height: 32px;
    color: rgba(0, 188, 212, 0.2);
    margin-bottom: 1rem;
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 1rem;
}

.star-filled {
    width: 16px;
    height: 16px;
    color: var(--color-primary);
    fill: var(--color-primary);
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.testimonial-avatar {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 188, 212, 0.1);
    border-radius: 50%;
    color: var(--color-primary);
    font-weight: 600;
}

.testimonial-name {
    font-weight: 500;
    display: block;
}

.testimonial-location {
    font-size: 0.875rem;
    color: var(--color-muted-foreground);
}

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

.testimonials-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.testimonials-btn:hover {
    border-color: var(--color-primary);
    transform: scale(1.1);
}

.testimonials-btn.active {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-primary-foreground);
}

.testimonials-btn i {
    width: 16px;
    height: 16px;
}

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

.dot {
    width: 8px;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 9999px;
    transition: all 0.3s ease;
}

.dot:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.dot.active {
    width: 32px;
    background-color: var(--color-primary);
}

.testimonials-auto-hint {
    text-align: center;
    font-size: 0.75rem;
    color: var(--color-muted-foreground);
    margin-top: 1rem;
}

/* ==========================================================================
   News Section
   ========================================================================== */
#news {
    padding: 8rem 0;
}
.news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

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

.news-card {
    background-color: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.5s ease;
}

.news-card:hover {
    box-shadow: 0 20px 40px rgba(0, 188, 212, 0.05);
}

.news-card__image {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.news-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.news-card:hover .news-card__image img {
    transform: scale(1.1);
}

.news-card__content {
    padding: 1.5rem;
}

.news-card__meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--color-muted-foreground);
    margin-bottom: 0.75rem;
}

.news-card__meta i {
    width: 16px;
    height: 16px;
}

.news-card__title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.news-card:hover .news-card__title {
    color: var(--color-primary);
}

.news-card__excerpt {
    font-size: 0.875rem;
    color: var(--color-muted-foreground);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.news-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-primary);
    transition: gap 0.3s ease;
}

.news-card__link:hover {
    gap: 0.5rem;
}

.news-card__link i {
    width: 16px;
    height: 16px;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
#contact {
    padding: 8rem 0;
    background-color: var(--color-secondary);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1.2fr 0.8fr;
        align-items: stretch;
    }
}

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

.whatsapp-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.1) 0%, rgba(37, 211, 102, 0.05) 100%);
    border: 1px solid rgba(37, 211, 102, 0.2);
    border-radius: 24px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.whatsapp-card:hover {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.15) 0%, rgba(37, 211, 102, 0.08) 100%);
    transform: translateY(-3px);
}

.whatsapp-card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.whatsapp-card__icon i {
    width: 28px;
    height: 28px;
}

.whatsapp-card__content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: white;
}

.whatsapp-card__content p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(197, 160, 89, 0.3);
    transform: translateY(-4px);
}

.contact-card__link,
.contact-card__static {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem;
}

.contact-card i {
    width: 24px;
    height: 24px;
    color: var(--color-primary);
    flex-shrink: 0;
}

.contact-card__label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-muted-foreground);
    margin-bottom: 0.25rem;
}

.contact-card__value {
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
}

.social-links-wrapper {
    padding: 1.5rem;
    background: rgba(197, 160, 89, 0.03);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px dashed rgba(197, 160, 89, 0.2);
}

.social-title {
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0;
    color: var(--color-primary);
}

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

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--color-primary);
    color: black;
    transform: rotate(10deg);
}

.contact-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.map-card {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
    min-height: 300px;
}

.map-card iframe {
    height: 100%;
}

.trust-card {
    background: linear-gradient(to bottom right, rgba(197, 160, 89, 0.1), transparent);
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 24px;
    padding: 2rem;
    text-align: center;
    display: none; /* Hide in compact mode */
}

.contact-disclaimer {
    text-align: center;
    margin-top: 4rem;
}

.contact-disclaimer p {
    font-size: 0.8rem;
    color: var(--color-muted-foreground);
}