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

:root {
    --primary: #2563eb;
    --primary-dark: #1e40af;
    --primary-light: #3b82f6;
    --secondary: #ff6600;
    --secondary-dark: #ea580c;
    --secondary-light: #fb923c;
    --accent: #10b981;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    --border: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;

    /* Typography Scale - Consistent and Aesthetic */
    --font-xs: 1.2rem;
    /* 12px - Small labels, captions */
    --font-sm: 1.4rem;
    /* 14px - Small text, secondary info */
    --font-base: 1.6rem;
    /* 16px - Base body text */
    --font-lg: 1.8rem;
    /* 18px - Large body text */
    --font-xl: 2rem;
    /* 20px - Subheadings, emphasis */
    --font-2xl: 2.4rem;
    /* 24px - Section headings */
    --font-3xl: 3.2rem;
    /* 32px - Large headings */
    --font-4xl: 4rem;
    /* 40px - Page titles */
    --font-5xl: 4.8rem;
    /* 48px - Hero headings */
    --font-6xl: 5.6rem;
    /* 56px - Large hero text */
    --font-7xl: 6.4rem;
    /* 64px - Extra large headings */
    --font-8xl: 7.2rem;
    /* 72px - Hero main text */
    --font-9xl: 8rem;
    /* 80px - Massive headings */

    /* Line Heights for Better Readability */
    --leading-tight: 1.1;
    --leading-snug: 1.3;
    --leading-normal: 1.6;
    --leading-relaxed: 1.8;

    /* Font Weights */
    --font-light: 300;
    --font-normal: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
    --font-extrabold: 800;
    --font-black: 900;
}

* {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Typography */
body {
    font-size: var(--font-base);
    line-height: var(--leading-normal);
    color: var(--text-primary);
    background: var(--bg-secondary);
    font-feature-settings: "kern" 1, "liga" 1, "calt" 1;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: var(--font-bold);
    line-height: var(--leading-tight);
    color: var(--text-primary);
}

p {
    line-height: var(--leading-relaxed);
    color: var(--text-secondary);
}

*::selection {
    background: var(--primary);
    color: #fff;
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: 8rem;
}



section {
    padding: 8rem 9%;
}

.text-color {
    color: var(--primary) !important;
}

.heading {
    text-align: center;
    font-size: var(--font-5xl);
    font-weight: var(--font-extrabold);
    padding: 2rem;
    color: var(--text-primary);
    line-height: var(--leading-tight);
}

.heading span {
    color: var(--primary);
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1.2rem 3.2rem;
    color: var(--primary);
    cursor: pointer;
    font-size: var(--font-base);
    font-weight: var(--font-semibold);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    z-index: 0;
    margin-top: 2rem;
    text-transform: none;
    letter-spacing: 0.025em;
    box-shadow: var(--shadow-sm);
}

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

.btn:hover::before {
    width: 100%;
    left: 0;
}

.btn:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-booknow {
    border-color: var(--secondary);
    color: #fff;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.3);
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-booknow::before {
    background: linear-gradient(135deg, var(--secondary-dark), var(--secondary));
    transform: scale(1.1);
}

.btn-booknow:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(255, 102, 0, 0.4);
}

.btn-booknow:active {
    transform: translateY(-1px) scale(0.98);
}

/* Header-specific Book Now Button */
.btn-header-booknow {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    border: 2px solid var(--primary);
    padding: 1rem 2.4rem;
    font-size: var(--font-sm);
    font-weight: var(--font-semibold);
    border-radius: var(--radius-xl);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    border: none;
}

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

.btn-header-booknow:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
    color: #fff;
}

.btn-header-booknow:hover::before {
    left: 0;
}

.btn-header-booknow:active {
    transform: translateY(-1px) scale(1.02);
}

.btn-header-booknow i {
    font-size: var(--font-sm);
    margin-right: 0.6rem;
}

/* Responsive adjustments for header button */
@media (max-width: 768px) {
    .btn-header-booknow {
        display: none; /* Hide on mobile as header-right is hidden */
    }
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.95) 100%);
    backdrop-filter: blur(25px);
    padding: 1.8rem 9%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

header:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(248, 250, 252, 1) 100%);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
}

/* Header animation on page load */
@keyframes headerSlideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

header {
    animation: headerSlideDown 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Enhanced navigation item animations */
.navbar a {
    position: relative;
    z-index: 1;
}

.navbar a:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1.75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 1.5rem;
    background: linear-gradient(180deg, transparent, rgba(37, 99, 235, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.navbar a:hover:not(:last-child)::after {
    opacity: 1;
}

header .logo {
    height: 40px;
    width: 100px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

header .logo:hover {
    transform: scale(1.08) rotate(1deg);
    filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.15));
}

header .navbar {
    display: flex;
    gap: 3.5rem;
    align-items: center;
}

header .navbar a {
    font-size: var(--font-lg);
    color: var(--text-primary);
    font-weight: var(--font-medium);
    position: relative;
    padding: 1rem 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: var(--radius-md);
    overflow: hidden;
}

header .navbar a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
    opacity: 0.1;
}

header .navbar a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
    border-radius: var(--radius-sm);
}

header .navbar a:hover {
    color: var(--primary);
    transform: translateY(-2px);
}

header .navbar a:hover::before {
    left: 0;
}

header .navbar a:hover::after {
    width: 80%;
}

#menu-bar {
    font-size: var(--font-xl);
    cursor: pointer;
    color: var(--primary);
    border: 2px solid rgba(37, 99, 235, 0.2);
    border-radius: var(--radius-lg);
    padding: 1rem 1.2rem;
    display: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

#menu-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
    opacity: 0.1;
}

#menu-bar:hover {
    color: #2563eb;
    transform: none;
    box-shadow: none;
}

#menu-bar:hover::before {
    left: 0;
}


.header-right {
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
}

.header-right::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 3rem;
    background: linear-gradient(180deg, transparent, rgba(37, 99, 235, 0.2), transparent);
}

.header-right .btn-booknow {
    transform: translateY(-10px);
}

.sized-box {
    height: 8rem;
    width: 100%;
    background: transparent;
}

.home {
    display: flex;
    padding-right: 1rem;
    flex-wrap: wrap;
    gap: 4rem;
    min-height: 100vh;
    align-items: center;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.home::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
    border-radius: 50%;
    transform: rotate(15deg);
    z-index: 0;
}

.home .content {
    flex: 1 1 50rem;
    position: relative;
    z-index: 1;
}

.home .image {
    flex: 1 1 50rem;
    position: relative;
    z-index: 1;
}

.home .image img {
    width: 90%;
    padding: 2rem;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0rem) rotate(0deg);
    }

    50% {
        transform: translateY(-2rem) rotate(1deg);
    }
}

.home .content h3 {
    font-size: var(--font-8xl);
    font-weight: var(--font-black);
    color: var(--text-primary);
    line-height: var(--leading-tight);
    margin-bottom: 2rem;
}

.home .content h3 span {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.home .content p {
    font-size: var(--font-2xl);
    font-weight: var(--font-semibold);
    color: var(--text-secondary);
    padding: 2rem 0;
    margin-bottom: 2rem;
}

/* Enhanced Gig Slider Styles */
.gig-slider-section {
    max-width: 1400px;
    margin: auto;
    padding: 8rem 2rem;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.gig-slider-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 0;
}

.gig-slider-title {
    color: var(--secondary);
    font-size: var(--font-5xl);
    font-weight: var(--font-black);
    margin-bottom: 4rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.gig-slider-title span {
    color: var(--text-primary);
    background: linear-gradient(135deg, var(--text-primary), var(--text-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gig-card-slider {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.gig-slider-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-2xl);
    padding: 3rem 2.5rem;
    color: white;
    width: calc(25% - 2.25rem);
    box-sizing: border-box;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    margin: 1rem;
}

.gig-slider-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.gig-slider-card:hover::before {
    left: 100%;
}

.gig-card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
}

.gig-icon-wrapper {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.gig-icon-wrapper img {
    width: 5rem;
    height: 5rem;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.gig-card-content p {
    font-size: var(--font-lg);
    font-weight: var(--font-semibold);
    margin: 0;
    letter-spacing: 0.025em;
    color: #ffffff;
}

.gig-slider-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.gig-slider-card:hover .gig-icon-wrapper {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

.gig-slider-card:hover .gig-icon-wrapper img {
    transform: scale(1.1);
}

/* Enhanced Work Section */
.work-section {
    padding: 10rem 2rem;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-tertiary) 100%);
    position: relative;
    overflow: hidden;
}

.work-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(34, 197, 94, 0.05) 100%);
    border-radius: 50%;
    transform: rotate(-15deg);
    z-index: 0;
}

.work-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.work-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.work-text {
    padding-right: 2rem;
}

.work-title {
    font-size: var(--font-7xl);
    font-weight: var(--font-extrabold);
    color: var(--text-primary);
    margin-bottom: 2rem;
    line-height: var(--leading-tight);
}

.work-subtitle {
    font-size: var(--font-2xl);
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-weight: var(--font-semibold);
}

.work-heading {
    font-size: var(--font-3xl);
    font-weight: var(--font-semibold);
    color: var(--text-primary);
    margin-bottom: 4rem;
    line-height: var(--leading-snug);
}

.highlight {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.work-services {
    display: grid;
    gap: 2.5rem;
    margin-top: 5rem;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

.service-item:hover {
    transform: translateX(1rem);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.service-icon {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.service-item:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-icon img {
    width: 4.5rem;
    height: 4.5rem;
    filter: brightness(0) invert(1);
}

.service-text {
    font-size: 2.4rem;
    color: var(--text-primary);
    font-weight: 600;
}

.work-image {
    display: flex;
    justify-content: center;
    position: relative;
}

.work-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
    transition: transform 0.3s ease;
}

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

/* Enhanced Platform Section */
.platform-section {
    padding: 12rem 2rem 8rem;
    position: relative;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    z-index: 1;
    overflow: hidden;
}

.platform-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    z-index: 0;
}

.platform-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.platform-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    padding: 8rem 6rem;
    border-radius: var(--radius-2xl);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: grid;
    grid-template-columns: 2fr 1fr;
    align-items: center;
    gap: 4rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.platform-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%, rgba(255, 255, 255, 0.05) 100%);
    transform: rotate(45deg);
    animation: shimmer 8s ease-in-out infinite;
}

@keyframes shimmer {

    0%,
    100% {
        transform: rotate(45deg) translateX(-100%);
    }

    50% {
        transform: rotate(45deg) translateX(100%);
    }
}

.platform-title {
    font-size: var(--font-6xl);
    color: var(--bg-primary);
    margin-bottom: 2rem;
    font-weight: var(--font-extrabold);
    line-height: var(--leading-tight);
}

.highlight-white {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.platform-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--font-xl);
    line-height: var(--leading-normal);
}

.platform-button {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    border: none;
    color: white;
    padding: 1.6rem 3.2rem;
    border-radius: var(--radius-xl);
    font-size: var(--font-lg);
    font-weight: var(--font-semibold);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
    display: inline-block;
}

.platform-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    background: linear-gradient(135deg, var(--secondary-dark), var(--secondary));
}

/* Enhanced Portfolio Section */
.portfolio-section {
    padding: 12rem 2rem;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    position: relative;
}

.portfolio-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: center;
}

.portfolio-image {
    position: relative;
}

.portfolio-image::before {
    content: '';
    position: absolute;
    top: -2rem;
    left: -2rem;
    right: 2rem;
    bottom: 2rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-2xl);
    z-index: -1;
    opacity: 0.1;
}

.portfolio-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
    transition: all 0.3s ease;
}

.portfolio-image:hover img {
    transform: scale(1.02);
}

.portfolio-intro {
    font-size: var(--font-xl);
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-weight: var(--font-semibold);
}

.highlight-blue {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.portfolio-title {
    font-size: var(--font-6xl);
    font-weight: var(--font-extrabold);
    color: var(--text-primary);
    margin-bottom: 2rem;
    line-height: var(--leading-tight);
}

.portfolio-desc {
    font-size: var(--font-xl);
    color: var(--text-secondary);
    margin-bottom: 4rem;
    line-height: var(--leading-normal);
}

.portfolio-table-wrapper {
    width: 100%;
    max-width: 90%;
}

.portfolio-table {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.portfolio-table-row {
    display: flex;
    align-items: center;
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    overflow: hidden;
}

.portfolio-table-row:hover {
    transform: translateX(1rem);
    box-shadow: var(--shadow-lg);
}

.portfolio-table-cell {
    padding: 2rem;
    display: flex;
    align-items: center;
}

.portfolio-table-cell:first-child {
    flex-shrink: 0;
}

.portfolio-table-cell:last-child {
    flex: 1;
}

.portfolio-icon {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    width: 7rem;
    height: 7rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.portfolio-table-row:hover .portfolio-icon {
    transform: scale(1.1) rotate(5deg);
}

.portfolio-icon img {
    width: 4rem;
    height: 4rem;
    filter: brightness(0) invert(1);
}

.portfolio-service-title {
    font-size: var(--font-2xl);
    color: var(--text-primary);
    margin-left: 2rem;
    font-weight: var(--font-semibold);
}

/* Enhanced Perks Section */
.perks-section {
    padding: 12rem 2rem;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-tertiary) 100%);
    position: relative;
    overflow: hidden;
}

.perks-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 200%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
    border-radius: 50%;
    transform: rotate(15deg);
    z-index: 0;
}

.perks-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.perks-header {
    text-align: center;
    margin-bottom: 6rem;
}

.perks-title {
    font-size: var(--font-6xl);
    font-weight: var(--font-extrabold);
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.perks-subtitle {
    font-size: var(--font-3xl);
    font-weight: var(--font-bold);
    color: var(--text-secondary);
    line-height: 1.3;
    margin-bottom: 2rem;
}

.perks-subtitle .highlight-blue {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.perks-intro {
    font-size: var(--font-lg);
    color: var(--text-secondary);
    line-height: var(--leading-relaxed);
    max-width: 90%;
    margin: 0 auto 4rem;
    text-align: center;
    padding: 0 2rem;
}

.perks-grid {
    margin-top: 6rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    padding: 6rem 4rem;
    border-radius: var(--radius-2xl);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

/* When there are exactly 3 items, center them better */
.perks-grid:has(.perk-item:nth-child(3):last-child) {
    grid-template-columns: repeat(3, 1fr);
    justify-content: center;
}

/* When there are exactly 2 items, center them */
.perks-grid:has(.perk-item:nth-child(2):last-child) {
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Fallback for browsers that don't support :has() - manually add class to HTML when needed */
.perks-grid.three-items {
    grid-template-columns: repeat(3, 1fr);
    justify-content: center;
}

.perks-grid.two-items {
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.perks-grid.one-item {
    grid-template-columns: 1fr;
    justify-content: center;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive behavior for different item counts */
@media (max-width: 768px) {
    .perks-grid.three-items,
    .perks-grid.two-items {
        grid-template-columns: 1fr;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .perks-grid {
        padding: 2rem 1rem;
        gap: 2rem;
    }
}

.perks-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="circles" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23circles)"/></svg>');
    z-index: 0;
}

.perk-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.perk-item:hover {
    transform: translateY(-1rem);
}

.perk-icon {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    color: #ffffff;
    padding: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.perk-item:hover .perk-icon {
    transform: scale(1.1) rotate(5deg);
}

.perk-icon img {
    width: 5.5rem;
    height: 5.5rem;
    filter: brightness(0) invert(1);
}

.perk-title {
    font-size: var(--font-2xl);
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-weight: var(--font-bold);
}

.perk-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--font-base);
    line-height: var(--leading-normal);
}

/* CTA Section */
.cta-section {
    padding: 12rem 2rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, #1e293b 100%);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cta-pattern" width="60" height="60" patternUnits="userSpaceOnUse"><path d="M 60 0 L 0 0 0 60" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23cta-pattern)"/></svg>');
    z-index: 0;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: var(--font-6xl);
    font-weight: var(--font-extrabold);
    margin-bottom: 2rem;
    line-height: var(--leading-tight);
    color: #ffffff;
}

.cta-section p {
    font-size: var(--font-xl);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 4rem;
    line-height: var(--leading-normal);
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
}

.btn-primary::before {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.btn-secondary {
    background: transparent;
    color: var(--secondary);
}

.btn-secondary::before {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
}

.btn-secondary:hover {
    color: #fff;
}

/* Enhanced Footer */
.footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: #fff;
    padding: 10rem 5% 4rem;
    position: relative;
    overflow: hidden;
    margin-top: 6rem;
}

/* Footer Text Sizes - Enhanced for Better Readability */
.footer p {
    font-size: var(--font-base);
    line-height: var(--leading-relaxed);
    color: rgba(255, 255, 255, 0.8);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footer-pattern" width="60" height="60" patternUnits="userSpaceOnUse"><path d="M 60 0 L 0 0 0 60" fill="none" stroke="%23ffffff" stroke-width="0.3" opacity="0.08"/></pattern></defs><rect width="100" height="100" fill="url(%23footer-pattern)"/></svg>');
    z-index: 0;
}

/* Removed footer top border */

.footer-top {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5rem;
    margin-bottom: 6rem;
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.footer-col {
    text-align: left;
    position: relative;
}

/* Removed footer column separators */

.footer-col h3 {
    margin-bottom: 2.5rem;
    font-size: var(--font-3xl);
    font-weight: var(--font-bold);
    color: #fff;
    position: relative;
    padding-bottom: 1rem;
}

/* Removed footer heading underline */

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-col ul li::before {
    content: '';
    position: absolute;
    left: -1.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--secondary);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-col ul li:hover::before {
    opacity: 1;
    left: -2rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: var(--font-base);
    transition: all 0.3s ease;
    display: inline-block;
    padding: 0.5rem 0;
    position: relative;
}

.footer-col ul li a:hover {
    color: var(--secondary);
    transform: translateX(0.8rem);
}

/* Removed footer link underline */

/* Removed footer link hover underline */

.footer-logo {
    width: 160px;
    margin-bottom: 2.5rem;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 3rem;
    font-size: var(--font-lg);
    font-weight: var(--font-medium);
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

/* Removed footer bottom accent line */

.footer-bottom span {
    color: var(--secondary);
    font-weight: var(--font-semibold);
    transition: color 0.3s ease;
}

.footer-bottom span:hover {
    color: var(--secondary-light);
}

/* Footer Social Links */
.footer-social {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4.5rem;
    height: 4.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--font-xl);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--secondary);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 102, 0, 0.3);
}

/* Footer Newsletter */
.footer-newsletter {
    margin-top: 3rem;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(10px);
}

.footer-newsletter h4 {
    font-size: var(--font-xl);
    font-weight: var(--font-semibold);
    margin-bottom: 1.5rem;
    color: #fff;
}

.newsletter-form {
    display: flex;
    gap: 1.2rem;
    max-width: 400px;
}

.newsletter-form input {
    flex: 1;
    padding: 1.2rem 1.5rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: var(--font-base);
    transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.1);
}

.newsletter-form button {
    padding: 1.2rem 2rem;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    border: none;
    border-radius: var(--radius-md);
    color: #fff;
    font-size: var(--font-base);
    font-weight: var(--font-semibold);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 102, 0, 0.3);
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    #menu-bar {
        display: block !important; /* Show menu bar only on mobile */
        color: #2563eb !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        z-index: 1001 !important;
        position: relative !important;
        font-size: 2rem !important;
        padding: 1.2rem 1.5rem !important;
        text-align: center !important;
        line-height: 1 !important;
        width: 50px !important;
        height: 50px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    /* CSS-only hamburger icon - guaranteed to work */
    #menu-bar::before {
        content: "" !important;
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        width: 24px !important;
        height: 3px !important;
        background: #2563eb !important;
        box-shadow: 
            0 -7px 0 #2563eb,
            0 7px 0 #2563eb !important;
        z-index: 1 !important;
    }
    
    /* Override the main ::before rule for mobile */
    #menu-bar {
        background: transparent !important;
    }
    
    #menu-bar::before {
        background: #2563eb !important;
        opacity: 1 !important;
        z-index: 1 !important;
        left: 50% !important;
        top: 50% !important;
        transform: translate(-50%, -50%) !important;
        width: 24px !important;
        height: 3px !important;
        box-shadow: 
            0 -7px 0 #2563eb,
            0 7px 0 #2563eb !important;
    }
    
    header {
        padding: 1.5rem 5%;
        justify-content: space-between !important;
        align-items: center !important;
    }
    
    header .logo {
        height: 35px !important;
        width: 90px !important;
    }

    .navbar {
        position: fixed;
        top: 8rem;
        left: -100%;
        width: 100%;
        height: calc(100vh - 8rem);
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.95) 100%);
        backdrop-filter: blur(25px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 4rem 0;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        z-index: 999;
        border-top: 1px solid rgba(226, 232, 240, 0.6);
    }

    .navbar.active {
        left: 0;
    }

    .navbar a {
        margin: 2rem 0;
        font-size: var(--font-xl);
        padding: 1.5rem 2rem;
        border-radius: var(--radius-md);
        transition: all 0.3s ease;
    }

    .navbar a:hover {
        background: var(--bg-tertiary);
        transform: translateX(0);
    }

    .header-right {
        display: none;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Enhanced About, Terms, Privacy Styles */
.about-us,
.terms-of-service,
.privacy-policy {
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    color: var(--text-primary);
    padding: 8rem 1.5rem;
    position: relative;
}

.about-us::before,
.terms-of-service::before,
.privacy-policy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="texture" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23e2e8f0" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23texture)"/></svg>');
    z-index: 0;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.spacer {
    height: 8rem;
}

.title {
    font-size: var(--font-5xl);
    font-weight: var(--font-extrabold);
    margin-bottom: 2rem;
    text-align: center;
    background: linear-gradient(135deg, var(--text-primary), var(--text-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.divider {
    width: 100px;
    height: 6px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    margin: 3rem auto;
    border-radius: var(--radius-sm);
}

.intro {
    color: var(--text-secondary);
    font-size: var(--font-lg);
    line-height: var(--leading-relaxed);
    margin-bottom: 4rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-line {
    border: none;
    border-top: 2px solid var(--border);
    margin: 4rem 0;
    opacity: 0.3;
}

.subtitle {
    font-size: var(--font-3xl);
    font-weight: var(--font-bold);
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.subheading {
    font-size: var(--font-2xl);
    font-weight: var(--font-semibold);
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.text {
    color: var(--text-secondary);
    font-size: var(--font-base);
    line-height: var(--leading-relaxed);
    margin-bottom: 2rem;
}

.list {
    list-style-type: none;
    padding-left: 0;
    color: var(--text-secondary);
    font-size: var(--font-base);
    margin-bottom: 3rem;
}

.list li {
    margin-bottom: 1rem;
    padding: 1.5rem 2rem;
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--primary);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.list li:hover {
    transform: translateX(0.5rem);
    box-shadow: var(--shadow-md);
    border-left-color: var(--secondary);
}

.list li i {
    color: var(--primary);
    font-size: var(--font-lg);
    flex-shrink: 0;
}

.principles li {
    margin-bottom: 1.5rem;
}

.principles strong {
    color: var(--text-primary);
    font-weight: var(--font-semibold);
}

/* About Page Specific Styles */
.about-section {
    margin-bottom: 4rem;
    padding: 3rem;
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.about-section:hover {
    transform: translateY(-0.5rem);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.about-section-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.about-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.about-section:hover .about-icon {
    transform: scale(1.1) rotate(5deg);
}

.about-icon i {
    color: white;
    font-size: var(--font-2xl);
}

.about-cta {
    text-align: center;
    margin-top: 6rem;
    padding: 4rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-2xl);
    color: white;
    position: relative;
    overflow: hidden;
}

.about-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cta-dots" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23cta-dots)"/></svg>');
    z-index: 0;
}

.about-cta>* {
    position: relative;
    z-index: 1;
}

.about-cta h3 {
    color: white;
    font-size: var(--font-3xl);
    font-weight: var(--font-bold);
    margin-bottom: 1rem;
}

.about-cta p {
    font-size: var(--font-lg);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
}

.about-cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.about-cta-buttons .btn {
    margin-top: 0;
}

/* Terms Page Specific Styles */
.terms-section {
    margin-bottom: 3rem;
    padding: 2.5rem;
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.terms-section:hover {
    transform: translateY(-0.3rem);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.terms-section-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.terms-icon {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.terms-section:hover .terms-icon {
    transform: scale(1.1) rotate(5deg);
}

.terms-icon i {
    color: white;
    font-size: var(--font-xl);
}

.terms-contact {
    text-align: center;
    margin-top: 5rem;
    padding: 3rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, #1e293b 100%);
    border-radius: var(--radius-2xl);
    color: white;
    position: relative;
    overflow: hidden;
}

.terms-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="contact-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23contact-pattern)"/></svg>');
    z-index: 0;
}

.terms-contact>* {
    position: relative;
    z-index: 1;
}

.terms-contact h3 {
    font-size: var(--font-3xl);
    font-weight: var(--font-bold);
    margin-bottom: 1rem;
}

.terms-contact p {
    font-size: var(--font-base);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: var(--font-base);
    margin: 0;
}

.contact-info i {
    color: var(--secondary);
    font-size: var(--font-lg);
}

.contact-info a {
    color: var(--secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--secondary-light);
}

/* Privacy Page Specific Styles */
.privacy-section {
    margin-bottom: 3rem;
    padding: 2.5rem;
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.privacy-section:hover {
    transform: translateY(-0.3rem);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.privacy-section-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.privacy-icon {
    background: linear-gradient(135deg, var(--accent), #34d399);
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.privacy-section:hover .privacy-icon {
    transform: scale(1.1) rotate(5deg);
}

.privacy-icon i {
    color: white;
    font-size: var(--font-xl);
}

.privacy-commitment {
    text-align: center;
    margin-top: 5rem;
    padding: 4rem;
    background: linear-gradient(135deg, var(--accent) 0%, #059669 100%);
    border-radius: var(--radius-2xl);
    color: white;
    position: relative;
    overflow: hidden;
}

.privacy-commitment::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="privacy-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="2" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23privacy-pattern)"/></svg>');
    z-index: 0;
}

.privacy-commitment>* {
    position: relative;
    z-index: 1;
}

.privacy-commitment h3 {
    font-size: var(--font-3xl);
    font-weight: var(--font-bold);
    margin-bottom: 1rem;
}

.privacy-commitment p {
    font-size: var(--font-lg);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
}

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.commitment-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.commitment-item:hover {
    transform: translateY(-0.5rem);
    background: rgba(255, 255, 255, 0.15);
}

.commitment-item i {
    font-size: var(--font-3xl);
    color: white;
    margin-bottom: 1rem;
}

.commitment-item h4 {
    font-size: var(--font-xl);
    font-weight: var(--font-semibold);
    margin-bottom: 1rem;
}

.commitment-item p {
    font-size: var(--font-sm);
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: var(--leading-snug);
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .about-section {
        padding: 2rem;
    }

    .about-section-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .about-icon {
        width: 5rem;
        height: 5rem;
    }

    .about-icon i {
        font-size: 2rem;
    }

    .about-cta {
        padding: 3rem 2rem;
    }

    .about-cta h3 {
        font-size: 3rem;
    }

    .about-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .terms-section {
        padding: 2rem;
    }

    .terms-section-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .terms-icon {
        width: 4rem;
        height: 4rem;
    }

    .terms-icon i {
        font-size: var(--font-base);
    }

    .terms-contact {
        padding: 2rem;
    }

    .terms-contact h3 {
        font-size: var(--font-3xl);
    }

    .privacy-section {
        padding: 2rem;
    }

    .privacy-section-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .privacy-icon {
        width: 4rem;
        height: 4rem;
    }

    .privacy-icon i {
        font-size: var(--font-base);
    }

    .privacy-commitment {
        padding: 3rem 2rem;
    }

    .privacy-commitment h3 {
        font-size: var(--font-3xl);
    }

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

@media (max-width: 640px) {
    .about-cta h3 {
        font-size: var(--font-2xl);
    }

    .about-cta p {
        font-size: var(--font-base);
    }

    .terms-contact h3 {
        font-size: var(--font-2xl);
    }

    .terms-contact p {
        font-size: var(--font-sm);
    }

    .contact-info p {
        font-size: var(--font-sm);
    }

    .privacy-commitment h3 {
        font-size: var(--font-2xl);
    }

    .privacy-commitment p {
        font-size: var(--font-sm);
    }

    .commitment-item h4 {
        font-size: var(--font-lg);
    }

    .commitment-item p {
        font-size: var(--font-xs);
    }
}

/* Tablet and iPad Responsive Design */
/* iPad Portrait and Small Tablets (768px - 834px) */
@media (min-width: 768px) and (max-width: 834px) {
    /* Header adjustments for iPad portrait */
    header {
        padding: 1.6rem 6%;
        backdrop-filter: blur(20px);
    }
    
    header .logo {
        height: 38px;
        width: 95px;
    }
    
    header .navbar {
        gap: 2.8rem;
    }
    
    header .navbar a {
        font-size: var(--font-base);
        padding: 0.8rem 0;
    }
    
    .header-right {
        gap: 1.5rem;
    }
    
    .btn-header-booknow {
        padding: 0.9rem 2rem;
        font-size: var(--font-xs);
    }
    
    /* Footer adjustments for iPad portrait */
    .footer {
        padding: 8rem 4% 3rem;
    }
    
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem;
        margin-bottom: 5rem;
    }
    
    .footer-col h3 {
        font-size: var(--font-2xl);
        margin-bottom: 2rem;
    }
    
    .footer-col ul li {
        margin-bottom: 1.2rem;
    }
    
    .footer-col ul li a {
        font-size: var(--font-sm);
    }
    
    .footer-logo {
        width: 140px;
        margin-bottom: 2rem;
    }
    
    .footer-social a {
        width: 4rem;
        height: 4rem;
        font-size: var(--font-lg);
    }
    
    .footer-newsletter {
        margin-top: 2.5rem;
        padding: 2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
        max-width: 350px;
    }
    
    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }
    
    .footer-bottom {
        font-size: var(--font-base);
        padding-top: 2.5rem;
    }
}

/* iPad Landscape and Medium Tablets (835px - 1024px) */
@media (min-width: 835px) and (max-width: 1024px) {
    /* Header adjustments for iPad landscape */
    header {
        padding: 1.7rem 7%;
        backdrop-filter: blur(22px);
    }
    
    header .logo {
        height: 42px;
        width: 105px;
    }
    
    header .navbar {
        gap: 3.2rem;
    }
    
    header .navbar a {
        font-size: var(--font-lg);
        padding: 0.9rem 0;
    }
    
    .header-right {
        gap: 1.8rem;
    }
    
    .btn-header-booknow {
        padding: 1rem 2.2rem;
        font-size: var(--font-sm);
    }
    
    /* Footer adjustments for iPad landscape */
    .footer {
        padding: 9rem 5% 3.5rem;
    }
    
    .footer-top {
        grid-template-columns: repeat(3, 1fr);
        gap: 4.5rem;
        margin-bottom: 5.5rem;
    }
    
    .footer-col h3 {
        font-size: var(--font-2xl);
        margin-bottom: 2.2rem;
    }
    
    .footer-col ul li {
        margin-bottom: 1.3rem;
    }
    
    .footer-col ul li a {
        font-size: var(--font-base);
    }
    
    .footer-logo {
        width: 150px;
        margin-bottom: 2.2rem;
    }
    
    .footer-social a {
        width: 4.2rem;
        height: 4.2rem;
        font-size: var(--font-xl);
    }
    
    .footer-newsletter {
        margin-top: 2.8rem;
        padding: 2.2rem;
    }
    
    .newsletter-form {
        gap: 1.1rem;
        max-width: 380px;
    }
    
    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }
    
    .footer-bottom {
        font-size: var(--font-lg);
        padding-top: 2.8rem;
    }
}

/* Large Tablets (1025px - 1199px) */
@media (min-width: 1025px) and (max-width: 1199px) {
    /* Header adjustments for large tablets */
    header {
        padding: 1.8rem 8%;
        backdrop-filter: blur(24px);
    }
    
    header .logo {
        height: 40px;
        width: 100px;
    }
    
    header .navbar {
        gap: 3.4rem;
    }
    
    header .navbar a {
        font-size: var(--font-lg);
        padding: 1rem 0;
    }
    
    .header-right {
        gap: 2rem;
    }
    
    .btn-header-booknow {
        padding: 1rem 2.4rem;
        font-size: var(--font-sm);
    }
    
    /* Footer adjustments for large tablets */
    .footer {
        padding: 9.5rem 5% 4rem;
    }
    
    .footer-top {
        grid-template-columns: repeat(4, 1fr);
        gap: 4.8rem;
        margin-bottom: 5.8rem;
    }
    
    .footer-col h3 {
        font-size: var(--font-3xl);
        margin-bottom: 2.4rem;
    }
    
    .footer-col ul li {
        margin-bottom: 1.4rem;
    }
    
    .footer-col ul li a {
        font-size: var(--font-base);
    }
    
    .footer-logo {
        width: 155px;
        margin-bottom: 2.4rem;
    }
    
    .footer-social a {
        width: 4.3rem;
        height: 4.3rem;
        font-size: var(--font-xl);
    }
    
    .footer-newsletter {
        margin-top: 2.8rem;
        padding: 2.4rem;
    }
    
    .newsletter-form {
        gap: 1.2rem;
        max-width: 400px;
    }
    
    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }
    
    .footer-bottom {
        font-size: var(--font-lg);
        padding-top: 3rem;
    }
}

/* Touch-friendly navigation for tablets */
@media (min-width: 768px) and (max-width: 1024px) {
    /* Enhanced touch targets for tablet navigation */
    header .navbar a {
        padding: 1.2rem 1.5rem;
        border-radius: var(--radius-md);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    header .navbar a:hover {
        background: rgba(37, 99, 235, 0.1);
        transform: translateY(-1px);
    }
    
    /* Improved button touch targets */
    .btn-header-booknow {
        min-height: 44px;
        min-width: 120px;
        touch-action: manipulation;
    }
    
    /* Footer touch improvements */
    .footer-col ul li a {
        padding: 0.8rem 0;
        border-radius: var(--radius-sm);
        transition: all 0.3s ease;
    }
    
    .footer-col ul li a:hover {
        background: rgba(255, 102, 0, 0.1);
        transform: translateX(0.5rem);
    }
    
    .footer-social a {
        min-height: 44px;
        min-width: 44px;
        touch-action: manipulation;
    }
    
    .newsletter-form input,
    .newsletter-form button {
        min-height: 44px;
        touch-action: manipulation;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    section {
        padding: 6rem 5%;
    }

    .home .content h3 {
        font-size: var(--font-6xl);
    }

    .work-title {
        font-size: var(--font-6xl);
    }

    .platform-title {
        font-size: var(--font-5xl);
    }

    .portfolio-title {
        font-size: var(--font-5xl);
    }

    .perks-title {
        font-size: var(--font-5xl);
    }

    .perks-subtitle {
        font-size: var(--font-2xl);
    }

    .cta-section h2 {
        font-size: var(--font-5xl);
    }
}

@media (max-width: 1200px) {
    .perks-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2.5rem;
        padding: 5rem 3rem;
    }
    
    .perks-intro {
        max-width: 95%;
        padding: 0 1.5rem;
    }
}

@media (max-width: 992px) {
    .work-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 4rem;
    }

    .platform-box {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
        padding: 6rem 4rem;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }

    .perks-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        padding: 4rem;
        gap: 2.5rem;
    }
    
    .perks-intro {
        max-width: 100%;
        padding: 0 1rem;
        font-size: var(--font-base);
    }

    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        text-align: center;
        gap: 3rem;
    }

    .footer-col:not(:last-child)::after {
        display: none;
    }

    .footer-newsletter {
        margin-top: 2rem;
        padding: 2rem;
    }

    .newsletter-form {
        flex-direction: column;
        align-items: center;
    }

    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
        max-width: 300px;
    }

    .gig-slider-card {
        width: calc(50% - 2rem);
        margin: 1.5rem;
    }

    .portfolio-table-wrapper {
        max-width: 100%;
    }

    .portfolio-table-row {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .portfolio-table-cell:last-child {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 56.25%;
    }

    section {
        padding: 4rem 3%;
    }

    .home .content h3 {
        font-size: var(--font-5xl);
    }

    .work-title {
        font-size: var(--font-5xl);
    }

    .platform-title {
        font-size: var(--font-4xl);
    }

    .portfolio-title {
        font-size: var(--font-4xl);
    }

    .perks-title {
        font-size: var(--font-4xl);
    }

    .perks-subtitle {
        font-size: var(--font-xl);
    }

    .cta-section h2 {
        font-size: var(--font-4xl);
    }

    .gig-slider-card {
        width: 100%;
        margin: 2rem 1rem;
    }

    .perks-grid {
        grid-template-columns: 1fr;
        padding: 3rem;
        gap: 2rem;
    }
    
    .perks-intro {
        max-width: 100%;
        padding: 0 0.5rem;
        font-size: var(--font-sm);
        margin-bottom: 3rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 640px) {
    .home {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }

    .home .content h3 {
        font-size: var(--font-4xl);
    }

    .work-title {
        font-size: var(--font-4xl);
    }

    .platform-title {
        font-size: var(--font-3xl);
    }

    .portfolio-title {
        font-size: var(--font-3xl);
    }

    .perks-title {
        font-size: var(--font-3xl);
    }

    .perks-subtitle {
        font-size: var(--font-lg);
    }

    .cta-section h2 {
        font-size: var(--font-3xl);
    }

    .platform-box {
        padding: 4rem 2rem;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-col {
        text-align: center;
    }

    .footer-col h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-newsletter {
        margin-top: 1.5rem;
        padding: 1.5rem;
    }

    .footer-social {
        justify-content: center;
    }

    .portfolio-table-cell {
        padding: 1.5rem;
    }

    .portfolio-icon {
        width: 5rem;
        height: 5rem;
    }

    .portfolio-icon img {
        width: 2.5rem;
        height: 2.5rem;
    }

    .portfolio-service-title {
        font-size: var(--font-xl);
        margin-left: 1rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

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

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 0.8s ease forwards;
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    animation: slideInRight 0.8s ease forwards;
}

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

/* Hover Effects */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2rem;
    height: 2rem;
    border: 2px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Typography Utility Classes */
.text-xs {
    font-size: var(--font-xs);
}

.text-sm {
    font-size: var(--font-sm);
}

.text-base {
    font-size: var(--font-base);
}

.text-lg {
    font-size: var(--font-lg);
}

.text-xl {
    font-size: var(--font-xl);
}

.text-2xl {
    font-size: var(--font-2xl);
}

.text-3xl {
    font-size: var(--font-3xl);
}

.text-4xl {
    font-size: var(--font-4xl);
}

.text-5xl {
    font-size: var(--font-5xl);
}

.text-6xl {
    font-size: var(--font-6xl);
}

.text-7xl {
    font-size: var(--font-7xl);
}

.text-8xl {
    font-size: var(--font-8xl);
}

.text-9xl {
    font-size: var(--font-9xl);
}

.font-light {
    font-weight: var(--font-light);
}

.font-normal {
    font-weight: var(--font-normal);
}

.font-medium {
    font-weight: var(--font-medium);
}

.font-semibold {
    font-weight: var(--font-semibold);
}

.font-bold {
    font-weight: var(--font-bold);
}

.font-extrabold {
    font-weight: var(--font-extrabold);
}

.font-black {
    font-weight: var(--font-black);
}

.leading-tight {
    line-height: var(--leading-tight);
}

.leading-snug {
    line-height: var(--leading-snug);
}

.leading-normal {
    line-height: var(--leading-normal);
}

.leading-relaxed {
    line-height: var(--leading-relaxed);
}

/* Text Colors */
.text-primary {
    color: var(--text-primary);
}

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

.text-muted {
    color: var(--text-muted);
}

.text-primary-color {
    color: var(--primary);
}

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

.text-accent {
    color: var(--accent);
}

/* Text Alignment */
.text-left {
    text-align: left;
}

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

.text-right {
    text-align: right;
}

/* Text Transform */
.uppercase {
    text-transform: uppercase;
}

.lowercase {
    text-transform: lowercase;
}

.capitalize {
    text-transform: capitalize;
}

/* Letter Spacing */
.tracking-tight {
    letter-spacing: -0.025em;
}

.tracking-normal {
    letter-spacing: 0;
}

.tracking-wide {
    letter-spacing: 0.025em;
}

.tracking-wider {
    letter-spacing: 0.05em;
}

/* Enhanced Typography for Better Readability */
.enhanced-text {
    font-feature-settings: "kern" 1, "liga" 1, "calt" 1;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Gradient Text Effects */
.gradient-text-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-secondary {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-accent {
    background: linear-gradient(135deg, var(--accent), #34d399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}