@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --bg-dark: #07080d;
    --bg-dark-secondary: #0c0e15;
    
    /* Premium accents */
    --primary: #ff2a5f;
    --primary-light: #ff5982;
    --primary-dark: #d61848;
    --primary-glow: rgba(255, 42, 95, 0.25);
    --primary-gradient: linear-gradient(135deg, #ff2a5f 0%, #ff6e40 100%);
    
    /* Base typography & containers */
    --text-color: #f3f5f9;
    --text-muted: #8a99ad;
    --white: #ffffff;
    --card-bg: rgba(15, 18, 28, 0.6);
    --card-bg-hover: rgba(22, 27, 43, 0.85);
    --border: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(255, 42, 95, 0.25);
    --radius-lg: 20px;
    --radius-md: 14px;
    --radius-sm: 8px;
    
    /* Brand accents */
    --ps-blue: #0070d1;
    --ps-blue-glow: rgba(0, 112, 209, 0.35);
    --xbox-green: #107c10;
    --xbox-green-glow: rgba(16, 124, 16, 0.35);
    --nintendo-red: #e60012;
    --nintendo-blue: #00b0e6;
    --nintendo-glow: rgba(230, 0, 18, 0.35);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-color);
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

/* SCROLLBAR */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: #1c2135;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* HEADER NAVIGATION */
.gc-header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;
}

.gc-header.scrolled {
    padding: 12px 0;
}

.gc-navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 24px;
    background: rgba(7, 8, 13, 0.7);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.gc-header.scrolled .gc-navbar {
    background: rgba(12, 14, 21, 0.85);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 42, 95, 0.1);
}

.gc-logo {
    color: var(--white);
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.gc-logo span {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
}

.gc-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.gc-nav > a {
	color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    padding: 5px 10px;
}

.gc-nav > a:not(.gc-btn):hover {
    color: var(--white);
}

.gc-nav > a:not(.gc-btn)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: width 0.3s ease;
    border-radius: 2px;
}

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

.gc-header-whatsapp {
    font-size: 22px !important;
    color: #25D366 !important;
    display: inline-flex;
    align-items: center;
    padding: 0 5px;
    transition: transform 0.3s ease !important;
}

.gc-header-whatsapp:hover {
    transform: scale(1.15) rotate(8deg);
    text-shadow: 0 0 15px rgba(37, 211, 102, 0.6);
}

.gc-menu-btn {
    display: none;
    background: none;
    border: 0;
    color: var(--white);
    font-size: 22px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.gc-menu-btn:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* BUTTONS */
.gc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    border: 0;
}

.gc-btn-primary {
    color: var(--white);
    background: var(--primary-gradient);
    box-shadow: 0 5px 20px var(--primary-glow);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.gc-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff5982 0%, #ff8960 100%);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.gc-btn-primary:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 42, 95, 0.4);
}

.gc-btn-primary:hover::before {
    opacity: 1;
}

.gc-btn-outline {
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.gc-btn-outline:hover {
    color: var(--white);
    border-color: var(--primary);
    background: rgba(255, 42, 95, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 42, 95, 0.1);
}

/* HERO SECTION */
.gc-hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 140px;
    padding-bottom: 80px;
    background-color: var(--bg-dark);
}

/* Dynamic Grid Background */
.gc-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        radial-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: 0 0, 20px 20px;
    pointer-events: none;
    z-index: 1;
}

/* Ambient Radial Glows */
.gc-hero-glow-1 {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 42, 95, 0.16) 0%, transparent 70%);
    top: -10%;
    right: 5%;
    z-index: 0;
    filter: blur(50px);
    animation: pulseGlow 12s infinite alternate;
}

.gc-hero-glow-2 {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(112, 0, 255, 0.08) 0%, transparent 70%);
    bottom: -10%;
    left: -5%;
    z-index: 0;
    filter: blur(50px);
    animation: pulseGlow 15s infinite alternate-reverse;
}

.gc-hero .container {
    position: relative;
    z-index: 2;
}

.gc-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 50px;
    background: rgba(255, 42, 95, 0.08);
    border: 1px solid rgba(255, 42, 95, 0.2);
    color: var(--primary-light);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.gc-badge i {
    font-size: 8px;
    animation: blink 1.5s infinite;
}

.gc-hero h1 {
    font-size: clamp(42px, 5.5vw, 76px);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 24px;
    color: var(--white);
}

.gc-hero h1 span {
    display: block;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gc-hero-text {
    max-width: 600px;
    color: var(--text-muted);
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 35px;
}

.gc-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}

.gc-trust-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.gc-trust-list span {
    color: #b3bac5;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.gc-trust-list i {
    color: var(--primary);
    font-size: 16px;
}

/* HERO IMAGE BLOCK */
.gc-hero-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 480px;
}

.gc-hero-image img {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 480px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 40px rgba(255, 42, 95, 0.1);
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: all 0.5s ease;
}

.gc-hero-image:hover img {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
    border-color: rgba(255, 42, 95, 0.3);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7), 0 0 50px rgba(255, 42, 95, 0.25);
}

.gc-floating-card {
    position: absolute;
    z-index: 5;
    padding: 14px 20px;
    border-radius: var(--radius-md);
    background: rgba(14, 18, 30, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
    pointer-events: none;
    transition: transform 0.3s ease;
}

.gc-floating-card i {
    color: var(--primary);
    font-size: 16px;
}

.gc-card-one {
    top: 15%;
    left: -15px;
    animation: floatAnim 6s ease-in-out infinite;
    border-left: 3px solid var(--primary);
}

.gc-card-two {
    right: -15px;
    bottom: 20%;
    animation: floatAnim 6s ease-in-out infinite 3s;
    border-left: 3px solid var(--ps-blue);
}

/* TRUST BAR */
.gc-trust-bar {
    background: var(--bg-dark-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 40px 0;
    position: relative;
    z-index: 3;
}

.gc-stat {
    text-align: center;
    border-right: 1px solid var(--border);
    padding: 10px;
}

.row > div:last-child .gc-stat {
    border-right: 0;
}

.gc-stat strong {
    display: block;
    font-size: 32px;
    font-weight: 900;
    background: linear-gradient(to right, var(--white), #bdcbdc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
    margin-bottom: 4px;
}

.gc-stat span {
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* SECTIONS BASE */
.gc-section {
    padding: 120px 0;
    background: var(--bg-dark);
    position: relative;
    z-index: 2;
}

/* Section Title */
.gc-section-title {
    max-width: 650px;
    text-align: center;
    margin: 0 auto 65px;
}

.gc-section-title > span,
.gc-feature-content > span,
.gc-booking span {
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.gc-section-title h2 {
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -1.5px;
    color: var(--white);
    margin-bottom: 16px;
}

.gc-section-title p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.7;
}

/* BRAND CARDS (PlayStation, Xbox, Nintendo) */
.gc-brand-card {
    padding: 40px 30px 30px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.gc-brand-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top center, rgba(255, 255, 255, 0.02), transparent 70%);
    pointer-events: none;
    z-index: 1;
}

/* Glow sphere behind the image */
.gc-brand-glow-sphere {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.12;
    z-index: 1;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.4s ease;
}

.gc-playstation .gc-brand-glow-sphere {
    background: var(--ps-blue);
}

.gc-xbox .gc-brand-glow-sphere {
    background: var(--xbox-green);
}

.gc-nintendo .gc-brand-glow-sphere {
    background: var(--nintendo-red);
}

.gc-brand-card:hover .gc-brand-glow-sphere {
    opacity: 0.3;
    width: 180px;
    height: 180px;
}

/* Status Badge */
.gc-brand-badge {
    position: absolute;
    top: 20px;
    left: 25px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.7px;
    color: var(--text-color);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    z-index: 5;
}

.gc-status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    display: inline-block;
    animation: blink 1.5s infinite;
}

.gc-playstation .gc-status-dot { background: var(--ps-blue); }
.gc-xbox .gc-status-dot { background: var(--xbox-green); }
.gc-nintendo .gc-status-dot { background: var(--nintendo-red); }

/* Image Wrapper */
.gc-brand-img-wrap {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    margin-top: 25px;
    position: relative;
    z-index: 2;
    width: 100%;
}

.gc-brand-img-wrap img {
    height: 100%;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5));
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gc-brand-card h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--white);
    z-index: 2;
}

/* Description */
.gc-brand-desc {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
    z-index: 2;
}

/* Features List */
.gc-brand-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    width: 100%;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 2;
}

.gc-brand-features li {
    font-size: 13px;
    color: #cbd5e1;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.gc-brand-features li i {
    font-size: 13px;
    transition: transform 0.3s;
}

.gc-playstation .gc-brand-features li i { color: #5fb1fc; }
.gc-xbox .gc-brand-features li i { color: #54d854; }
.gc-nintendo .gc-brand-features li i { color: #ff6e7b; }

.gc-brand-card:hover .gc-brand-features li i {
    transform: scale(1.1);
}

/* Action button inside card */
.gc-brand-btn {
    width: 100%;
    padding: 13px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    margin-top: auto;
    z-index: 2;
}

.gc-playstation .gc-brand-btn:hover {
    background: var(--ps-blue);
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(0, 112, 209, 0.4);
    color: var(--white);
}

.gc-xbox .gc-brand-btn:hover {
    background: var(--xbox-green);
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(16, 124, 16, 0.4);
    color: var(--white);
}

.gc-nintendo .gc-brand-btn:hover {
    background: var(--nintendo-red);
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(230, 0, 18, 0.4);
    color: var(--white);
}

.gc-brand-btn i {
    font-size: 11px;
    transition: transform 0.3s;
}

.gc-brand-btn:hover i {
    transform: translateX(4px);
}

/* Hover effects with brand-specific glows */
.gc-brand-card:hover {
    transform: translateY(-8px);
    background: var(--card-bg-hover);
}

.gc-brand-card:hover .gc-brand-img-wrap img {
    transform: scale(1.08) translateY(-5px);
}

/* Brand PlayStation card glow */
.gc-brand-card.gc-playstation:hover {
    border-color: rgba(0, 112, 209, 0.4);
    box-shadow: 0 20px 50px rgba(0, 112, 209, 0.15), 0 0 0 1px rgba(0, 112, 209, 0.2);
}

/* Brand Xbox card glow */
.gc-brand-card.gc-xbox:hover {
    border-color: rgba(16, 124, 16, 0.4);
    box-shadow: 0 20px 50px rgba(16, 124, 16, 0.15), 0 0 0 1px rgba(16, 124, 16, 0.2);
}

/* Brand Nintendo card glow */
.gc-brand-card.gc-nintendo:hover {
    border-color: rgba(230, 0, 18, 0.4);
    box-shadow: 0 20px 50px rgba(230, 0, 18, 0.15), 0 0 0 1px rgba(230, 0, 18, 0.2);
}


/* PROBLEMS SECTION (Upgraded to Dark Glassmorphic Panels) */
.gc-section.gc-light {
    background-color: var(--bg-dark-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

/* Override light styles for titles */
.gc-section.gc-light .gc-section-title h2 {
    color: var(--white);
}

.gc-problem-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 32px 28px;
    height: 100%;
    transition: all 0.4s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.gc-problem-card:hover {
    transform: translateY(-5px);
    background: var(--card-bg-hover);
    border-color: rgba(255, 42, 95, 0.25);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 42, 95, 0.08);
}

.gc-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: rgba(255, 42, 95, 0.08);
    color: var(--primary);
    font-size: 22px;
    margin-bottom: 22px;
    border: 1px solid rgba(255, 42, 95, 0.15);
    transition: all 0.3s ease;
}

.gc-problem-card:hover .gc-icon {
    background: var(--primary-gradient);
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(255, 42, 95, 0.3);
}

.gc-problem-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.gc-problem-card p {
    color: var(--text-muted);
    font-size: 13.5px;
    line-height: 1.65;
}


/* SERVICES SECTION */
.gc-service-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 35px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.4s ease;
}

.gc-service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.gc-service-card:hover {
    transform: translateY(-6px);
    background: var(--card-bg-hover);
    border-color: rgba(255, 42, 95, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.gc-service-card:hover::after {
    transform: scaleX(1);
}

.gc-service-card small {
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.gc-service-card h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--white);
    margin: 18px 0 10px;
}

.gc-service-card p {
    color: var(--text-muted);
    font-size: 13.5px;
    line-height: 1.65;
    margin-bottom: 25px;
    flex-grow: 1;
}

.gc-service-card a {
    color: var(--primary-light);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.gc-service-card a:hover {
    color: var(--white);
    text-shadow: 0 0 8px rgba(255, 42, 95, 0.4);
}


/* FEATURE SECTION */
.gc-feature {
    padding: 120px 0;
    background: var(--bg-dark-secondary);
    position: relative;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.gc-feature-image {
    width: 100%;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 25px 60px rgba(0,0,0,0.5);
    transition: transform 0.5s ease;
}

.gc-feature-image:hover {
    transform: scale(1.02);
    border-color: rgba(255, 42, 95, 0.25);
}

.gc-feature-content {
    padding-left: 30px;
}

.gc-feature-content h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1.5px;
    color: var(--white);
    margin: 15px 0 20px;
}

.gc-feature-content p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.gc-feature-content ul {
    list-style: none;
    margin-bottom: 35px;
}

.gc-feature-content li {
    color: #d1d8e2;
    font-size: 14.5px;
    font-weight: 600;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.gc-feature-content li i {
    color: var(--primary);
    font-size: 14px;
    background: rgba(255, 42, 95, 0.08);
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 42, 95, 0.15);
}


/* WHY CHOOSE US */
.gc-why-card {
    height: 100%;
    padding: 35px 30px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.4s ease;
}

.gc-why-card:hover {
    transform: translateY(-5px);
    background: var(--card-bg-hover);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.gc-why-card .gc-icon {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.08);
    color: var(--white);
}

.gc-why-card:hover .gc-icon {
    background: var(--primary-gradient);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(255, 42, 95, 0.3);
}

.gc-why-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.gc-why-card p {
    color: var(--text-muted);
    font-size: 13.5px;
    line-height: 1.65;
}


/* PROCESS STEPS */
.gc-step {
    text-align: center;
    padding: 20px 10px;
    position: relative;
}

.gc-step > div {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: var(--card-bg);
    border: 1px solid rgba(255, 42, 95, 0.3);
    color: var(--primary-light);
    font-size: 18px;
    font-weight: 800;
    box-shadow: 0 0 20px rgba(255, 42, 95, 0.1);
    transition: all 0.3s ease;
}

.gc-step:hover > div {
    background: var(--primary-gradient);
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 0 25px rgba(255, 42, 95, 0.4);
    transform: scale(1.1);
}

.gc-step h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.gc-step p {
    color: var(--text-muted);
    font-size: 13.5px;
    line-height: 1.6;
}


/* BOOKING & FORM SECTION */
.gc-booking {
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.gc-booking-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 42, 95, 0.08) 0%, transparent 70%);
    top: 50%;
    left: -10%;
    transform: translateY(-50%);
    z-index: 0;
    filter: blur(50px);
}

.gc-booking .container {
    position: relative;
    z-index: 2;
}

.gc-booking h2 {
    font-size: clamp(32px, 4.5vw, 48px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1.5px;
    color: var(--white);
    margin: 15px 0 20px;
}

.gc-booking p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.gc-contact-info {
    margin-top: 35px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gc-contact-info p {
    color: #e2e8f0;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 14px;
}

.gc-contact-info i {
    color: var(--primary);
    font-size: 18px;
    background: rgba(255, 42, 95, 0.08);
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 42, 95, 0.15);
}

/* PREMIUM REDESIGNED FORM */
.gc-form {
    background: rgba(14, 18, 30, 0.7);
    border: 1px solid var(--border);
    padding: 45px;
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    position: relative;
}

.gc-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-gradient);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.gc-form label {
    display: block;
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.gc-form .form-control,
.gc-form .form-select {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    padding: 14px;
    color: var(--white);
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s ease;
}

/* Style select options */
.gc-form .form-select option {
    background: #0f121d;
    color: var(--white);
}

.gc-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.gc-form .form-control:focus,
.gc-form .form-select:focus {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary);
    box-shadow: 0 0 18px rgba(255, 42, 95, 0.15);
    color: var(--white);
    outline: none;
}

.gc-form textarea.form-control {
    resize: none;
}

/* FOOTER SECTION */
.gc-footer {
    padding: 80px 0 30px;
    background: #040508;
    border-top: 1px solid var(--border);
    position: relative;
    z-index: 2;
}

.gc-footer .gc-logo {
    margin-bottom: 20px;
}

.gc-footer p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.gc-social {
    display: flex;
    gap: 16px;
}

.gc-social a {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 16px;
    transition: all 0.3s ease;
}

.gc-social a:hover {
    background: var(--primary-gradient);
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(255, 42, 95, 0.3);
    transform: translateY(-3px);
}

.gc-footer h4 {
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.gc-footer a:not(.gc-social a) {
    display: block;
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 12px;
}

.gc-footer a:not(.gc-social a):hover {
    color: var(--white);
    padding-left: 4px;
}

.gc-footer p i {
    color: var(--primary);
    width: 22px;
}

.gc-footer-bottom {
    border-top: 1px solid var(--border);
    margin-top: 50px;
    padding-top: 25px;
    color: rgba(255, 255, 255, 0.2);
    font-size: 13px;
    text-align: center;
}

/* ANIMATIONS */
@keyframes pulseGlow {
    0% {
        transform: scale(1) translate(0, 0);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.15) translate(20px, -20px);
        opacity: 1;
    }
}

@keyframes floatAnim {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-12px) rotate(1deg);
    }
    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}


/* MOBILE RESPONSIVENESS */
@media(max-width:991px) {
    .gc-menu-btn {
        display: flex;
    }

    .gc-nav {
        display: none;
        position: absolute;
        top: 75px;
        left: 0;
        right: 0;
        padding: 30px 24px;
        flex-direction: column;
        align-items: stretch;
        background: rgba(12, 14, 21, 0.98);
        border: 1px solid var(--border);
        border-radius: var(--radius-md);
        box-shadow: 0 20px 50px rgba(0,0,0,0.8);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        gap: 18px;
        animation: slideDown 0.3s ease forwards;
        z-index: 1000;
    }

    .gc-nav.active {
        display: flex;
    }

    .gc-nav > a {
        font-size: 15px;
        padding: 8px 0;
        border-bottom: 1px solid rgba(255,255,255,0.03);
    }

    .gc-nav > a::after {
        display: none;
    }

    .gc-header-whatsapp {
        border-bottom: 0 !important;
        align-self: flex-start;
    }

    .gc-hero {
        padding-top: 150px;
        padding-bottom: 60px;
    }

    .gc-hero-image {
        min-height: 400px;
        margin-top: 50px;
    }

    .gc-feature-content {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .gc-stat {
        border-right: 0;
        border-bottom: 1px solid var(--border);
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
    
    .row > div:last-child .gc-stat {
        border-bottom: 0;
        margin-bottom: 0;
        padding-bottom: 0;
    }
}

@media(max-width:767px) {
    .gc-section,
    .gc-feature {
        padding: 80px 0;
    }

    .gc-hero h1 {
        font-size: 40px;
    }

    .gc-trust-list {
        flex-direction: column;
        gap: 12px;
    }

    .gc-hero-image {
        min-height: 320px;
    }

    .gc-floating-card {
        font-size: 11px;
        padding: 10px 14px;
    }

    .gc-card-one {
        left: 0;
    }

    .gc-card-two {
        right: 0;
    }

    .gc-form {
        padding: 30px 20px;
    }
}

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