/**
 * GSS Academy - Main Stylesheet
 *
 * @package GSSAcademy
 * @version 1.0.0
 */

/* ==========================================================================
   Font Face Declarations (Self-hosted, GDPR compliant)
   ========================================================================== */

/* Inter Variable Font - Latin Extended */
@font-face {
    font-family: 'Inter';
    font-weight: 300 800;
    font-style: normal;
    font-display: swap;
    src: url('../fonts/inter/inter-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* Inter Variable Font - Latin */
@font-face {
    font-family: 'Inter';
    font-weight: 300 800;
    font-style: normal;
    font-display: swap;
    src: url('../fonts/inter/inter-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Great Vibes - Latin Extended */
@font-face {
    font-family: 'Great Vibes';
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    src: url('../fonts/great-vibes/great-vibes-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* Great Vibes - Latin */
@font-face {
    font-family: 'Great Vibes';
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    src: url('../fonts/great-vibes/great-vibes-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ==========================================================================
   CSS Variables
   ========================================================================== */

:root {
    --zinc-50: #fafafa;
    --zinc-100: #f4f4f5;
    --zinc-200: #e4e4e7;
    --zinc-300: #aaaaaa;
    --zinc-400: #cccccc;
    --zinc-500: #71717a;
    --zinc-600: #52525b;
    --zinc-700: #d4cfc6;
    --zinc-800: #e8e4dc;
    --zinc-900: #f4f2ee;
    --zinc-950: #f8f8f6;
    --gold-400: #c9a84c;
    --gold-500: #b8962e;
    --gold-600: #a17f1a;
    --amber-400: #c9a84c;
    --amber-500: #b8962e;
    --amber-600: #a17f1a;
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #ffffff;
    color: #333333;
    line-height: 1.6;
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f0f0f0; }
::-webkit-scrollbar-thumb { background: #ccc; border-radius: 4px; }

::-moz-selection { background-color: rgba(201, 168, 76, 0.3); color: #222; }
::selection { background-color: rgba(201, 168, 76, 0.3); color: #222; }

/* ==========================================================================
   Layout
   ========================================================================== */

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==========================================================================
   Header
   ========================================================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.97);
    -webkit-backdrop-filter: blur(12px);
            backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.25);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.header-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 72px;
    gap: 4px;
    flex-wrap: nowrap;
}

.site-logo {
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.site-logo img {
    max-height: 42px;
    width: auto;
    display: block;
}

/* ==========================================================================
   Navigation
   ========================================================================== */

.nav {
    display: none;
    align-items: center;
    gap: 2px;
    flex-wrap: nowrap;
    justify-content: center;
}

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

.header .nav a,
.header .nav .nav-link {
    color: #444;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
    letter-spacing: 0.01em;
    position: relative;
    display: inline-flex;
    align-items: center;
    line-height: 1;
}

.header .nav a:hover,
.header .nav .nav-link:hover {
    color: #fff;
    background: var(--gold-400);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(201, 168, 76, 0.35);
}

.header .nav a.active,
.header .nav .nav-link.active,
.header .nav .current-menu-item > a,
.header .nav .current_page_item > a {
    color: #fff;
    background: var(--gold-500);
    box-shadow: 0 2px 8px rgba(201, 168, 76, 0.3);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    color: #555;
    cursor: pointer;
    padding: 8px;
}

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

/* Mobile Menu */
.mobile-menu {
    display: none;
    padding: 16px;
    background: #ffffff;
    border-top: 1px solid rgba(201, 168, 76, 0.2);
}

.mobile-menu.open { display: block; }

.mobile-menu a {
    display: block;
    padding: 12px;
    color: #555;
    text-decoration: none;
    border-radius: 8px;
    margin-bottom: 4px;
}

.mobile-menu a:hover {
    background: rgba(201, 168, 76, 0.1);
    color: var(--gold-600);
}

/* ==========================================================================
   Page Layout (WordPress)
   ========================================================================== */

.page-content {
    padding-top: 110px;
    min-height: 100vh;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
    position: relative;
    z-index: 2;
    min-height: calc(100vh - 90px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.7) 50%, rgba(255, 255, 255, 0.9) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 40px 24px;
    max-width: 1000px;
}

/* Badge */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 50px;
    margin-bottom: 32px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--amber-400);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

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

.badge-text {
    color: var(--amber-400);
    font-size: 0.875rem;
    font-weight: 500;
}

/* Hero Typography */
.hero h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 16px;
    color: #222;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    color: #555;
    margin-bottom: 24px;
}

.hero-tagline {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--amber-400);
    margin-bottom: 40px;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: var(--amber-500);
    color: #fff;
}

.btn-primary:hover {
    background: var(--amber-400);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

/* ==========================================================================
   Page Header
   ========================================================================== */

.page-header {
    text-align: center;
    padding: 60px 24px 20px;
    background: linear-gradient(180deg, rgba(201, 168, 76, 0.06) 0%, transparent 100%);
}

.page-header h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--gold-600);
    transition: color 0.3s ease;
}

.page-header h1:hover {
    color: #333;
}

.page-header p {
    color: #666;
    font-size: 1.125rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Back to Home */
.back-home {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #777;
    text-decoration: none;
    font-size: 0.875rem;
    margin-bottom: 24px;
    transition: color 0.3s;
}

.back-home:hover {
    color: var(--gold-600);
}

/* ==========================================================================
   Content Sections
   ========================================================================== */

.content-section {
    padding: 80px 24px;
    background: #fff;
    position: relative;
    z-index: 2;
}

.content-section:nth-child(even) {
    background: #f8f8f6;
}

.section-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--gold-400);
}

.section-text {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 24px;
}

/* ==========================================================================
   Grid Layouts
   ========================================================================== */

.grid-2 {
    display: grid;
    gap: 48px;
    align-items: center;
}

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

/* ==========================================================================
   Feature Cards
   ========================================================================== */

.feature-card {
    padding: 24px;
    background: #ffffff;
    border: 1px solid #e8e4dc;
    border-radius: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.feature-card:hover {
    border-color: rgba(201, 168, 76, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: rgba(201, 168, 76, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.feature-icon i,
.feature-icon svg {
    width: 28px;
    height: 28px;
    color: var(--gold-400);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--gold-400);
}

.feature-card p {
    color: #666;
    font-size: 0.95rem;
}

/* ==========================================================================
   Image Container
   ========================================================================== */

.image-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.image-glow {
    position: absolute;
    inset: -20px;
    background: rgba(201, 168, 76, 0.1);
    border-radius: 24px;
    filter: blur(40px);
    z-index: -1;
}

/* ==========================================================================
   Steps List
   ========================================================================== */

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.step-item {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: #ffffff;
    border: 1px solid #e8e4dc;
    border-radius: 16px;
}

.step-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(201, 168, 76, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--gold-400);
}

.step-content h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--gold-400);
}

.step-content p {
    color: #666;
    font-size: 0.95rem;
}

/* ==========================================================================
   Highlight Box
   ========================================================================== */

.highlight-box {
    padding: 24px;
    background: rgba(201, 168, 76, 0.08);
    border-left: 4px solid var(--gold-500);
    border-radius: 0 12px 12px 0;
    margin: 32px 0;
}

.highlight-box p {
    color: #444;
    font-weight: 500;
}

/* ==========================================================================
   Services / Info Cards Grid
   ========================================================================== */

.services-grid {
    display: grid;
    gap: 24px;
}

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

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

.info-card {
    padding: 32px;
    background: #ffffff;
    border: 1px solid #e8e4dc;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.info-card-icon {
    width: 64px;
    height: 64px;
    background: rgba(201, 168, 76, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.info-card-icon i,
.info-card-icon svg {
    width: 32px;
    height: 32px;
    color: var(--gold-400);
}

.info-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--gold-400);
}

.info-card p {
    color: #666;
    font-size: 0.9rem;
}

/* ==========================================================================
   Stats Row
   ========================================================================== */

.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 24px;
    margin: 48px 0;
}

.stat-item {
    text-align: center;
    padding: 24px;
    background: #ffffff;
    border: 1px solid #e8e4dc;
    border-radius: 12px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--amber-400);
}

.stat-label {
    color: #777;
    font-size: 0.875rem;
    margin-top: 4px;
}

/* ==========================================================================
   Level Cards (MLM)
   ========================================================================== */

.level-grid {
    display: grid;
    gap: 16px;
}

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

.level-card {
    padding: 20px;
    background: #ffffff;
    border: 1px solid #e8e4dc;
    border-radius: 12px;
    text-align: center;
}

.level-card.highlight {
    border-color: var(--gold-500);
    background: rgba(201, 168, 76, 0.08);
}

.level-label {
    font-size: 0.875rem;
    color: #888;
}

.level-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--amber-400);
}

.level-sublabel {
    color: #777;
    font-size: 0.875rem;
}

/* ==========================================================================
   Gold Features Section (Parallax)
   ========================================================================== */

.gold-features-wrapper {
    position: relative;
    overflow: hidden;
}

/* Fixed background image via pseudo-element for cross-browser parallax */
.gold-features-wrapper::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/hero/gold-features-bg.png');
    background-size: cover;
    background-position: center;
    z-index: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* Overlay on top of background image */
.gold-features-wrapper::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(243, 234, 210, 0.35);
    z-index: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* When wrapper is in viewport, show the background */
.gold-features-wrapper.in-view::before,
.gold-features-wrapper.in-view::after {
    opacity: 1;
}

.gold-features-bg {
    display: none;
}

.gold-features-section {
    position: relative;
    z-index: 1;
    padding: 100px 0 120px;
}

.gold-features-heading {
    font-family: 'Great Vibes', cursive;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    color: #3a3520;
    text-align: center;
    margin-bottom: 56px;
    line-height: 1.3;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.7);
}

.gold-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 0 24px;
}

.gold-feature-card {
    background: rgba(255, 255, 255, 0.93);
    -webkit-backdrop-filter: blur(12px);
            backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 40px 24px 36px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gold-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(201, 168, 76, 0.15);
}

.gold-feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.2), rgba(201, 168, 76, 0.05));
}

.gold-feature-icon svg,
.gold-feature-icon i {
    width: 30px;
    height: 30px;
    color: var(--gold-500);
}

.gold-feature-card h4 {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold-400);
    margin-bottom: 14px;
}

.gold-feature-card p {
    font-size: 0.88rem;
    line-height: 1.65;
    color: #6b6355;
    font-style: italic;
}

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

@media (max-width: 600px) {
    .gold-features-grid {
        grid-template-columns: 1fr;
    }
    .gold-features-section {
        padding: 60px 0 80px;
    }
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
    padding: 48px 24px;
    background: #f8f7f3;
    border-top: 1px solid rgba(201, 168, 76, 0.2);
    text-align: center;
}

.footer p {
    color: #888;
    font-size: 0.875rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px 24px;
    margin-bottom: 16px;
}

.footer-links a {
    color: #777;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--gold-400);
}

/* Override WordPress menu list styles in footer */
.footer-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 24px;
}

.footer-links li {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* ==========================================================================
   Front Page: Hero fills viewport, so remove top padding
   ========================================================================== */

.home .page-content,
.page-template-front-page .page-content {
    padding-top: 0;
}

/* ==========================================================================
   Responsive: Info Cards 4-col grid (Warum Gss Academy)
   ========================================================================== */

@media (max-width: 1024px) {
    .content-section .info-cards-4col {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 600px) {
    .content-section .info-cards-4col {
        grid-template-columns: 1fr !important;
    }
}

/* ==========================================================================
   Responsive: 3-col features grid (Alles was Sie brauchen)
   ========================================================================== */

@media (max-width: 1024px) {
    .content-section .features-3col {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 600px) {
    .content-section .features-3col {
        grid-template-columns: 1fr !important;
    }
}

/* ==========================================================================
   Responsive: Stats 4-col grid
   ========================================================================== */

@media (max-width: 1024px) {
    .content-section .stats-4col {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 600px) {
    .content-section .stats-4col {
        grid-template-columns: 1fr !important;
    }
}

/* ==========================================================================
   Responsive: Steps (So funktioniert's) - flex to column on mobile
   ========================================================================== */

@media (max-width: 600px) {
    .content-section .step-row {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center;
    }
}

/* ==========================================================================
   Responsive: CTA buttons
   ========================================================================== */

@media (max-width: 600px) {
    .content-section .cta-buttons {
        flex-direction: column !important;
        align-items: center;
    }
}

/* ==========================================================================
   Feature card as link
   ========================================================================== */

a.feature-card {
    text-decoration: none;
    color: inherit;
    display: block;
}

a.feature-card:hover {
    text-decoration: none;
}

/* ==========================================================================
   WordPress-specific: Admin Bar Offset
   ========================================================================== */

.admin-bar .header {
    top: 32px;
}

@media screen and (max-width: 782px) {
    .admin-bar .header {
        top: 46px;
    }
}

/* ==========================================================================
   WordPress Block Alignment
   ========================================================================== */

.alignwide {
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
}

.alignfull {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
}

/* ==========================================================================
   WordPress Block Images
   ========================================================================== */

.wp-block-image {
    margin: 32px 0;
}

.wp-block-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.wp-block-image figcaption {
    text-align: center;
    color: #888;
    font-size: 0.875rem;
    margin-top: 8px;
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */

.text-center { text-align: center; }
.text-gold { color: var(--gold-400); }
.bg-alt { background: #f8f8f6; }
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ==========================================================================
   Responsive: Inline grid overrides for content sections
   ========================================================================== */

@media (max-width: 1024px) {
    .content-section [style*="repeat(4, 1fr)"],
    .content-section [style*="repeat(3, 1fr)"] {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .step-item [style*="1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 600px) {
    .content-section [style*="repeat(4, 1fr)"],
    .content-section [style*="repeat(3, 1fr)"],
    .content-section [style*="repeat(2, 1fr)"] {
        grid-template-columns: 1fr !important;
    }
}

/* ==========================================================================
   Contact Page - Info Cards & Form
   ========================================================================== */

/* Info Cards */
.kontakt-info-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: #f8f8f6;
    border-radius: 16px;
    border: 1px solid #e8e4dc;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.kontakt-info-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.kontakt-info-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #c9a84c 0%, #b8962e 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.kontakt-info-icon i,
.kontakt-info-icon svg {
    width: 20px;
    height: 20px;
    color: #fff;
    stroke: #fff;
}

/* Contact Form Container */
.gss-contact-form-container {
    background: #ffffff;
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8e4dc;
}

.gss-contact-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.gss-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.gss-form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.gss-form-group label {
    color: #333;
    font-size: 12px;
    font-weight: 500;
}

.gss-form-group input,
.gss-form-group select,
.gss-form-group textarea {
    padding: 12px 16px;
    border: 1.5px solid #e8e4dc;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #333;
    background: #f8f8f6;
    transition: all 0.3s ease;
}

.gss-form-group input:focus,
.gss-form-group select:focus,
.gss-form-group textarea:focus {
    outline: none;
    border-color: #c9a84c;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.gss-form-group input::placeholder,
.gss-form-group textarea::placeholder {
    color: #9ca3af;
}

.gss-form-group textarea {
    resize: vertical;
    min-height: 100px;
    border-radius: 16px;
}

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

/* Checkbox */
.gss-checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.gss-checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #c9a84c;
    cursor: pointer;
    margin-top: 1px;
    flex-shrink: 0;
    border-radius: 4px;
}

.gss-checkbox-group label {
    font-size: 11px;
    color: #6b7280;
    line-height: 1.4;
}

.gss-checkbox-group label a {
    color: #c9a84c;
    text-decoration: none;
    font-weight: 500;
}

.gss-checkbox-group label a:hover {
    text-decoration: underline;
}

/* Submit Button */
.gss-submit-btn {
    background: linear-gradient(135deg, #c9a84c 0%, #b8962e 100%);
    color: #fff;
    border: none;
    padding: 14px 32px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
    box-shadow: 0 6px 20px rgba(201, 168, 76, 0.25);
    align-self: flex-start;
    position: relative;
}

.gss-submit-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(201, 168, 76, 0.4);
}

.gss-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.gss-submit-btn svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.gss-submit-btn:hover:not(:disabled) svg {
    transform: translateX(3px);
}

/* Spinner */
.gss-spinner {
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid #fff;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    animation: gssSpin 0.8s linear infinite;
    display: none;
}

.gss-submit-btn.loading .gss-spinner {
    display: block;
}

.gss-submit-btn.loading .gss-arrow-icon {
    display: none;
}

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

/* Alert Messages */
.gss-alert {
    padding: 14px 18px;
    border-radius: 12px;
    margin-bottom: 16px;
    font-size: 13px;
    font-weight: 500;
    display: none;
    animation: gssSlideDown 0.3s ease;
}

.gss-alert.show {
    display: block;
}

.gss-alert-success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.gss-alert-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

@keyframes gssSlideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Contact Page Responsive */
@media (max-width: 900px) {
    .kontakt-grid-2col {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
}

@media (max-width: 480px) {
    .gss-form-row {
        grid-template-columns: 1fr;
    }
    .gss-contact-form-container {
        padding: 20px;
    }
}
