:root {
    /* Premium Color Palette */
    --primary: #0f172a;
    /* Deep Slate */
    --primary-dark: #020617;
    --accent: #c2410c;
    /* High-end Orange/Rust */
    --accent-hover: #9a3412;
    --accent-light: #ffedd5;

    /* Gid Gradients */
    --grad-primary: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --grad-accent: linear-gradient(135deg, #c2410c 0%, #ea580c 100%);
    --grad-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);

    /* Text Colors */
    --text-main: #1e293b;
    --text-muted: #64748b;
    --text-light: #94a3b8;

    /* Surfaces */
    --bg-page: #f8fafc;
    --bg-white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.2);

    /* System */
    --transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    --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 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-premium: 0 25px 50px -12px rgba(15, 23, 42, 0.15);

    /* Radius */
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-full: 9999px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--bg-page);
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-sm);
}

/* Layout */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 0.75rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
}

.section-padding {
    padding: 4rem 0;
}

@media (min-width: 1024px) {
    .section-padding {
        padding: 8rem 0;
    }
}

/* Typography Utility */
.section-label {
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    display: block;
    font-size: 0.875rem;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

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

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

@media (min-width: 1024px) {
    .section-header {
        margin-bottom: 5rem;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--accent);
    color: white;
    font-weight: 600;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.btn:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px var(--accent);
}

.btn-outline {
    background: transparent;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: var(--primary);
}

.btn-premium-white {
    background: white;
    color: var(--accent);
}

.btn-outline-white {
    background: transparent;
    border: 2px solid white;
    color: white;
}

/* Header */
.main-header {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 0;
    transition: var(--transition);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo img {
    height: 60px;
    width: auto;
    display: block;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    color: var(--primary);
}

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

@media (min-width: 768px) {
    .logo img {
        height: 55px;
    }

    .logo-text {
        font-size: 1.875rem;
    }
}

.footer-logo {
    height: 50px !important;
}

.sidebar-logo-icon {
    height: 35px;
    width: auto;
    margin-right: 0.5rem;
}

/* Desktop Nav */
.desktop-nav {
    display: none;
}

@media (min-width: 1024px) {
    .desktop-nav {
        display: block;
    }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a {
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    color: var(--text-main);
    letter-spacing: 0.05em;
    position: relative;
    display: block;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Dropdown Support */
.has-dropdown {
    position: relative;
}

.has-dropdown>a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem 0;
    /* Creates the hover bridge without shifting the text */
    margin: -1.5rem 0;
}

.has-dropdown>a i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.has-dropdown:hover>a i {
    transform: rotate(180deg);
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: white;
    min-width: 250px;
    padding: 1rem 0;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 100;
}

.dropdown::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid white;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown li {
    padding: 0;
}

.dropdown li a {
    display: block !important;
    padding: 0.75rem 1.5rem !important;
    font-size: 0.9rem !important;
    color: var(--text-main) !important;
    text-transform: none !important;
    transition: all 0.2s ease !important;
}

.dropdown li a::after {
    display: none;
}

.dropdown li a:hover {
    background: #f8fafc;
    color: var(--accent) !important;
    padding-left: 1.75rem !important;
}

/* Mobile Dropdown styles */
.mobile-has-dropdown .mobile-nav-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.submenu-toggle {
    background: none;
    border: none;
    color: var(--primary);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.submenu-toggle.active {
    transform: rotate(180deg);
}

.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
    padding-left: 1rem;
}

.mobile-submenu.active {
    max-height: 500px;
    transition: max-height 0.4s ease-in-out;
}

.mobile-submenu li a {
    padding: 0.75rem 0 !important;
    font-size: 1rem !important;
    opacity: 0.8;
}

/* Mobile Toggle */
.mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 60;
}

@media (min-width: 1024px) {
    .mobile-toggle {
        display: none;
    }
}

.hamburger {
    width: 24px;
    height: 2px;
    background: var(--primary);
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--primary);
    left: 0;
    transition: var(--transition);
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

/* sidebar */
.mobile-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--bg-white);
    z-index: 2100;
    box-shadow: var(--shadow-premium);
    transform: translateX(-100%);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
    padding: 2.5rem 2rem;
}

.mobile-sidebar.active {
    transform: translateX(0);
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.sidebar-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-main);
    cursor: pointer;
}

.mobile-links li {
    margin-bottom: 1.5rem;
}

.mobile-links a {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
}

.sidebar-footer {
    margin-top: auto;
    padding-top: 2rem;
    border-top: 1px solid var(--bg-page);
}

.sidebar-contact a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.sidebar-contact i {
    color: var(--accent);
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 6, 23, 0.6);
    backdrop-filter: blur(4px);
    z-index: 2050;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.hide-mobile {
    display: none;
}

@media (min-width: 640px) {
    .hide-mobile {
        display: inline-flex;
    }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--primary-dark);
    color: white;
    padding-top: 4rem;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to right, rgba(2, 6, 23, 0.95), rgba(2, 6, 23, 0.4)), url('../images/hero.webp');
    background-size: cover;
    background-position: center;
    z-index: 1;
    animation: heroBackground 20s linear infinite alternate;
}

@keyframes heroBackground {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 2rem;
    color: var(--accent-light);
    box-shadow: 0 0 20px rgba(194, 65, 12, 0.1);
    animation: badgePulse 3s infinite;
}

@keyframes badgePulse {
    0% {
        box-shadow: 0 0 0 0 rgba(194, 65, 12, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(194, 65, 12, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(194, 65, 12, 0);
    }
}

.hero-title {
    font-size: 3rem;
    line-height: 1.1;
    max-width: 900px;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.hero-description {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin-bottom: 3rem;
    line-height: 1.7;
}

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

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.btn-outline-dark {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.btn-outline-dark:hover {
    background: white;
    color: var(--primary);
    border-color: white;
}

/* Global Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1),
        transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Background Clip Fix (Duplicate fix to ensure it applies to all instances) */
.text-gradient {
    background: var(--grad-accent);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-scroll {
    position: absolute;
    bottom: 3rem;
    left: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    z-index: 2;
    color: var(--text-light);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--accent), transparent);
}

/* Animations */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

.animate-slide-up {
    animation: slideUp 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.animate-fade-in {
    animation: fadeIn 1s ease-out forwards;
}

.animate-bounce {
    animation: bounce 2s infinite;
}

/* Hero Testimonial Integration */
.hero-testimonial {
    margin-top: 3rem;
    margin-bottom: 3rem;
    max-width: 500px;
}

@media (min-width: 1024px) {
    .hero-testimonial {
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        margin-top: 0;
        max-width: 400px;
    }
}

.hero-review-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-premium);
    position: relative;
    overflow: hidden;
}

.hero-review-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 10px;
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.03);
    font-family: 'Outfit', sans-serif;
    line-height: 1;
}

.hero-review-card .review-stars {
    color: #f59e0b;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.hero-review-card .review-text {
    font-size: 1.125rem;
    font-style: italic;
    color: white;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.hero-review-card .review-author {
    font-weight: 800;
    color: var(--accent-light);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
}

/* Remove old review styles */
.review-intro {
    display: none;
}

/* Workflow */
.workflow-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

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

.workflow-card {
    background: var(--bg-white);
    padding: 4rem 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
    overflow: hidden;
}

.workflow-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--grad-accent);
    transition: var(--transition);
}

.workflow-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-premium);
}

.workflow-card:hover::before {
    height: 100%;
}

.workflow-icon {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 2.5rem;
    transition: var(--transition);
    display: inline-block;
}

.workflow-card:hover .workflow-icon {
    transform: scale(1.1) translateY(-5px);
}

.workflow-number {
    font-size: 5rem;
    font-weight: 900;
    color: rgba(15, 23, 42, 0.05);
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    line-height: 1;
    font-family: 'Outfit', sans-serif;
}

.workflow-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    font-weight: 800;
}

.workflow-card p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.7;
}

/* Offer */
.offer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

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

.offer-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.offer-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-premium);
}

.offer-img {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.offer-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 60%, rgba(15, 23, 42, 0.3));
    opacity: 0;
    transition: var(--transition);
}

.offer-card:hover .offer-img::after {
    opacity: 1;
}

.offer-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.23, 1, 0.32, 1);
    border-radius: 0;
}

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

.offer-content {
    padding: 2.5rem 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.offer-content h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.offer-content p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    margin-bottom: 2rem;
    flex-grow: 1;
    line-height: 1.7;
}

.offer-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--accent);
    font-weight: 800;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.offer-link i {
    transition: var(--transition);
}

.offer-link:hover i {
    transform: translateX(8px);
}

/* Fix for lint warning */
.text-gradient {
    background: var(--grad-accent);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.services-list {
    background: var(--primary-dark);
    color: white;
    position: relative;
    overflow: hidden;
}

.services-list::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(194, 65, 12, 0.05) 0%, transparent 70%);
    z-index: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

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

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

.service-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem 2rem;
    border-radius: var(--radius-md);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
}

.service-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--grad-accent);
    transition: var(--transition);
}

.service-item:hover {
    background: rgba(255, 255, 255, 0.07);
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-premium);
}

.service-item:hover::after {
    width: 100%;
}

.service-item i {
    font-size: 2.5rem;
    color: var(--accent);
    margin: 0;
    transition: var(--transition);
}

.service-item:hover i {
    transform: scale(1.1) rotate(5deg);
    color: #ea580c;
}

.service-item h3 {
    font-size: 1.5rem;
    color: white;
    margin: 0;
    font-weight: 800;
}

.service-item p {
    color: var(--text-light);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin: 0;
    opacity: 0.8;
}

/* Stats */
.trust-bar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.stat-item {
    text-align: center;
    border-right: 1px solid #eee;
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

/* CTA */
.cta {
    background: var(--accent);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.cta-btns {
    margin-top: 40px;
}

.cta-btns .btn {
    margin: 0 10px;
}

/* About Us */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

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

.about-img-box {
    position: relative;
    padding-right: 2rem;
    padding-bottom: 2rem;
}

.about-img-box img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-premium);
}

.about-experience {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--grad-accent);
    color: white;
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    text-align: center;
    min-width: 160px;
}

.exp-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.exp-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 3rem;
    margin-top: 2rem;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--primary);
}

.feature-item i {
    color: var(--accent);
}

.stats-section {
    background: var(--bg-page);
    color: var(--primary);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

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

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.stat-number {
    font-size: 2.25rem;
    font-weight: 800;
    background: var(--grad-accent);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.25rem;
    display: block;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    line-height: 1.3;
}

/* CTA */
.cta-card {
    background: var(--grad-primary);
    border-radius: var(--radius-lg);
    padding: 0;
    color: white;
    box-shadow: var(--shadow-premium);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
}

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

.cta-content {
    padding: 3rem 1.5rem;
    text-align: left;
    position: relative;
    z-index: 2;
}

@media (min-width: 1024px) {
    .cta-content {
        padding: 5rem 4rem;
    }
}

.cta-label {
    display: block;
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
    letter-spacing: 0.15em;
    font-size: 0.875rem;
}

.cta-title {
    color: white;
    margin-bottom: 2rem;
    font-size: 2.25rem;
    line-height: 1.2;
    font-weight: 800;
}

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

.cta-text {
    max-width: 600px;
    margin-bottom: 3rem;
    opacity: 0.9;
    font-size: 1.0625rem;
    line-height: 1.7;
}

.cta-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.cta-benefits li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--accent-light);
}

.cta-benefits i {
    color: var(--accent);
    font-size: 1.125rem;
}

.cta-actions-side {
    padding: 2rem 1.5rem;
    position: relative;
    z-index: 2;
}

@media (min-width: 1024px) {
    .cta-actions-side {
        padding: 5rem 4rem 5rem 0;
    }
}

.cta-card-inner {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.cta-card-inner h3 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.cta-btns-v {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.btn-premium {
    background: var(--grad-accent);
    color: white;
    border: none;
    padding: 1.25rem 2rem;
    font-size: 1rem;
}

.btn-premium:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 20px rgba(194, 65, 12, 0.3);
}

.cta-hours {
    margin-top: 1.5rem;
    font-size: 0.75rem;
    color: var(--text-light);
    opacity: 0.6;
}

.cta-shape {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(194, 65, 12, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
}

.btn-outline:hover {
    background: var(--accent);
    color: white;
}

/* Mobile Responsive */
@media (max-width: 992px) {

    .section-grid,
    .workflow-grid,
    .offer-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .nav-menu {
        display: none;
        /* Hide desktop menu */
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .stat-item {
        border-right: none;
        margin-bottom: 20px;
    }

    .trust-bar-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Offer Gallery Grid */
.offer-images-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 350px);
    gap: 20px;
}

.large-img {
    grid-row: span 2;
}

.detail-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

/* Contact Page Box */
.contact-box {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border-left: 5px solid var(--accent);
    margin-bottom: 20px;
}

.contact-box i {
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 15px;
}

/* Footer */
.main-footer {
    background: var(--primary-dark);
    color: white;
    padding-top: 8rem;
    padding-bottom: 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1280px;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(194, 65, 12, 0.3), transparent);
}

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

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

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

.footer-brand .logo {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    display: block;
}

.footer-tagline {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 350px;
    opacity: 0.8;
}

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

.social-links a {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    color: white;
    font-size: 1.125rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(194, 65, 12, 0.2);
}

.main-footer h4 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    font-weight: 800;
    position: relative;
    display: inline-block;
}

.main-footer h4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent);
}

.footer-links li {
    margin-bottom: 1.25rem;
}

.footer-links a {
    color: var(--text-light);
    font-size: 0.9375rem;
    transition: var(--transition);
    opacity: 0.8;
}

.footer-links a:hover {
    color: var(--accent);
    opacity: 1;
    padding-left: 8px;
}

.footer-contact-info li {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 2rem;
    color: var(--text-light);
    font-size: 0.9375rem;
}

.footer-contact-info i {
    color: var(--accent);
    font-size: 1.125rem;
    margin-top: 4px;
}

.footer-contact-info a {
    color: inherit;
    transition: var(--transition);
}

.footer-contact-info a:hover {
    color: white;
}

.footer-bottom {
    padding: 2.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(0, 0, 0, 0.2);
}

.footer-bottom-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.copyright span {
    color: white;
    font-weight: 600;
}

.footer-author a {
    color: white;
    font-weight: 700;
}

.footer-author a:hover {
    color: var(--accent);
}

/* Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 6, 23, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.modal-overlay.is-active {
    opacity: 1;
    visibility: visible;
}

/* Modal Content */
.modal-content {
    background: var(--bg-white);
    width: 100%;
    max-width: 650px;
    border-radius: var(--radius-lg);
    position: relative;
    padding: 0.75rem;
    transform: translateY(30px);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-overlay.is-active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--accent);
    transform: rotate(90deg);
}

.modal-header {
    margin-bottom: 2.5rem;
    text-align: center;
}

.modal-header h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.modal-header p {
    color: var(--text-muted);
    font-size: 0.9375rem;
}

/* Modal Form */
.modal-form .form-group {
    margin-bottom: 1.5rem;
}

.modal-form .form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .modal-form .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.modal-form label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.modal-form input,
.modal-form textarea {
    width: 100%;
    padding: 0.875rem 1.25rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.9375rem;
    transition: var(--transition);
}

.modal-form textarea {
    height: 120px;
    resize: none;
}

.modal-form input:focus,
.modal-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: white;
    box-shadow: 0 0 0 4px rgba(194, 65, 12, 0.1);
}

.modal-form .form-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.form-note {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.form-status {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    text-align: center;
    display: none;
}

.form-status.success {
    display: block;
    background: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.form-status.error {
    display: block;
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* Inspirations Page */
.inspirations-page .page-hero {
    padding: 10rem 0 6rem;
    background: var(--primary-dark);
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.inspirations-page .page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 120%, rgba(194, 65, 12, 0.15), transparent 70%);
}

.inspirations-page .page-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    color: white;
}

.inspirations-page .page-hero p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

/* Masonry Layout */
.gallery-masonry {
    columns: 1;
    column-gap: 2rem;
}

@media (min-width: 640px) {
    .gallery-masonry {
        columns: 2;
    }
}

@media (min-width: 1024px) {
    .gallery-masonry {
        columns: 3;
    }
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 2rem;
}

.gallery-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.gallery-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(2, 6, 23, 0.9) 0%, transparent 70%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: all 0.4s ease;
}

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

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

.gallery-category {
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.gallery-overlay h3 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 0;
}

.gallery-zoom-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 44px;
    height: 44px;
    background: var(--accent);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transform: scale(0.8);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-card:hover .gallery-zoom-btn {
    opacity: 1;
    transform: scale(1);
}

.gallery-footer {
    margin-top: 6rem;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-footer p {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    color: var(--text-muted);
}

/* Enhanced Masonry Interactivity */
.gallery-card {
    cursor: pointer;
}

.gallery-card:hover {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.gallery-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 0px solid var(--accent);
    transition: all 0.3s ease;
    pointer-events: none;
}

.gallery-card:hover::after {
    border-width: 8px;
}

/* Force different heights for masonry feel if images are same size */
.gallery-item:nth-child(even) .gallery-card img {
    min-height: 250px;
}

.gallery-item:nth-child(odd) .gallery-card img {
    min-height: 350px;
}

/* Contact Page Refined Styles */
.contact-page {
    background-color: var(--bg-page);
}

.contact-page .page-hero {
    padding: 10rem 0 6rem;
    background: var(--primary-dark);
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-page .page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 120%, rgba(194, 65, 12, 0.25), transparent 70%);
    z-index: 1;
}

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

.contact-page .page-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    color: white;
    letter-spacing: -0.02em;
}

.contact-page .page-hero p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .contact-page .page-hero h1 {
        font-size: 4.5rem;
    }
}

.contact-section {
    position: relative;
    margin-top: -3rem;
    /* Lift content into hero */
    z-index: 10;
    padding-bottom: 8rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: stretch;
}

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

.contact-info-card,
.contact-form-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.1);
    border: 1px solid rgba(15, 23, 42, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {

    .contact-info-card,
    .contact-form-card {
        padding: 4rem;
    }
}

.contact-info-card .section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.info-items {
    margin: 2rem 0;
    display: grid;
    gap: 1.5rem;
}

.info-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.info-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-light);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 10px 20px rgba(194, 65, 12, 0.15);
}

.info-text h3 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    font-weight: 800;
}

.info-text p,
.info-text a {
    color: var(--primary);
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.4;
}

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

/* Map Display */
.map-placeholder {
    margin-top: auto;
    background: #f1f5f9;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 280px;
    position: relative;
    border: 1px solid #e2e8f0;
}

.map-inner {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    background-image: linear-gradient(rgba(241, 245, 249, 0.6), rgba(241, 245, 249, 0.6)), url('https://www.google.com/maps/vt/pb=!1m5!1m4!1i12!2i2245!3i1363!4i256!2m3!1e0!2sm!3i662137061!3m17!2spl!3sUS!5e18!12m4!1e68!2m2!1sset!2sRoadmap!12m3!1e37!2m1!1ssmartmaps!4e0!5m1!5f2!23i1301875');
    background-size: cover;
    background-position: center;
}

.map-inner i {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 10px rgba(194, 65, 12, 0.3));
}

.map-inner p {
    font-size: 1rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

/* Page Contact Form */
.contact-form-card {
    background: var(--bg-white);
}

.contact-form-card h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-form-card p {
    color: var(--text-muted);
    font-size: 1.125rem;
    margin-bottom: 3rem;
}

.page-contact-form .form-group {
    margin-bottom: 2rem;
}

.page-contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 640px) {
    .page-contact-form .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.page-contact-form label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
    color: var(--primary);
}

.page-contact-form input,
.page-contact-form textarea {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: #f8fafc;
    border: 2px solid #f1f5f9;
    border-radius: 14px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    color: var(--primary);
}

.page-contact-form textarea {
    height: 200px;
    resize: none;
}

.page-contact-form input:focus,
.page-contact-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: white;
    box-shadow: 0 10px 40px rgba(194, 65, 12, 0.1);
}

.page-contact-form .form-footer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    margin-top: 1rem;
}

@media (min-width: 640px) {
    .page-contact-form .form-footer {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.page-contact-form .btn-premium {
    padding: 1.25rem 3.5rem;
    font-size: 1rem;
    font-weight: 700;
}

/* ==========================================================================
   EXTREME CONTACT PAGE REDESIGN
   Targeting #premium-contact-wrapper for maximum specificity
   ========================================================================== */

#premium-contact-wrapper {
    background-color: #f8fafc;
    color: var(--primary);
    position: relative;
    padding-bottom: 5rem;
}

#premium-contact-wrapper .page-hero {
    padding: 12rem 0 10rem;
    background: #020617;
    /* Slate 950 */
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

#premium-contact-wrapper .page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(194, 65, 12, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(30, 41, 59, 0.4) 0%, transparent 50%);
    z-index: 1;
}

#premium-contact-wrapper .hero-content {
    position: relative;
    z-index: 10;
}

#premium-contact-wrapper .page-hero h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    color: #ffffff;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

#premium-contact-wrapper .page-hero p {
    font-size: 1.25rem;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto;
}

#premium-contact-wrapper .contact-main-container {
    margin-top: -5rem;
    /* Powerful lift */
    position: relative;
    z-index: 20;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

#premium-contact-wrapper .contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

@media (min-width: 1024px) {
    #premium-contact-wrapper .contact-grid {
        grid-template-columns: 1fr 1.4fr;
        gap: 3rem;
    }
}

/* Glassmorphism Cards */
#premium-contact-wrapper .glass-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 1.5rem;
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.05),
        0 20px 25px -5px rgba(0, 0, 0, 0.05),
        0 25px 50px -12px rgba(15, 23, 42, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.5);
    height: 100%;
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    #premium-contact-wrapper .glass-card {
        padding: 3rem;
    }
}

#premium-contact-wrapper .card-title {
    font-size: 2.25rem;
    margin-bottom: 2.5rem;
    color: var(--primary);
    font-weight: 800;
}

/* Info List Styling */
#premium-contact-wrapper .info-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

#premium-contact-wrapper .info-item-box {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

#premium-contact-wrapper .icon-wrap {
    width: 64px;
    height: 64px;
    background: #fff7ed;
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 10px 15px -3px rgba(194, 65, 12, 0.1);
}

#premium-contact-wrapper .content h3 {
    font-size: 0.875rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

#premium-contact-wrapper .content p,
#premium-contact-wrapper .content a {
    font-size: 1.125rem;
    color: var(--primary);
    font-weight: 600;
    line-height: 1.4;
}

/* Map Box Visual */
#premium-contact-wrapper .map-box {
    margin-top: auto;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    height: 300px;
    background: #f1f5f9;
}

#premium-contact-wrapper .map-box iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* Premium Form Styling */
#premium-contact-wrapper .card-desc {
    color: #64748b;
    margin-bottom: 3rem;
    font-size: 1.125rem;
}

#premium-contact-wrapper .premium-form .input-field {
    margin-bottom: 2rem;
}

#premium-contact-wrapper .premium-form label {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

#premium-contact-wrapper .premium-form input,
#premium-contact-wrapper .premium-form textarea {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: #f8fafc;
    border: 3px solid #f1f5f9;
    border-radius: 16px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    color: var(--primary);
}

#premium-contact-wrapper .premium-form textarea {
    height: 180px;
    resize: none;
}

#premium-contact-wrapper .premium-form input:focus,
#premium-contact-wrapper .premium-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: #ffffff;
    box-shadow: 0 10px 30px -5px rgba(194, 65, 12, 0.15);
}

#premium-contact-wrapper .input-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 640px) {
    #premium-contact-wrapper .input-row {
        grid-template-columns: 1fr 1fr;
    }
}

#premium-contact-wrapper .premium-submit {
    width: 100%;
    background: var(--accent);
    color: #ffffff;
    padding: 1.5rem;
    border-radius: 16px;
    font-size: 1.125rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 15px 30px -10px rgba(194, 65, 12, 0.5);
}

#premium-contact-wrapper .premium-submit:hover {
    background: var(--accent-hover);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -10px rgba(194, 65, 12, 0.6);
}

/* Animations */
#premium-contact-wrapper .animate-up {
    animation: premiumUp 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes premiumUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

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

/* ==========================================================================
   ABOUT US PAGE PREMIUM STYLES
   ========================================================================== */

#premium-about-wrapper {
    background-color: #f8fafc;
    color: var(--primary);
    position: relative;
    padding-bottom: 5rem;
}

#premium-about-wrapper .page-hero {
    padding: 12rem 0 10rem;
    background: #020617;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

#premium-about-wrapper .page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(194, 65, 12, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(30, 41, 59, 0.4) 0%, transparent 50%);
    z-index: 1;
}

#premium-about-wrapper .hero-content {
    position: relative;
    z-index: 10;
}

#premium-about-wrapper .page-hero h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    color: #ffffff;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

#premium-about-wrapper .page-hero p {
    font-size: 1.25rem;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto;
}

#premium-about-wrapper .about-main-container {
    margin-top: -6rem;
    position: relative;
    z-index: 20;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

/* Story Section */
.story-section {
    margin-bottom: 6rem;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: start;
}

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

.story-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 2rem;
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.05),
        0 20px 25px -5px rgba(0, 0, 0, 0.05),
        0 25px 50px -12px rgba(15, 23, 42, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

@media (min-width: 768px) {
    .story-content {
        padding: 4rem;
    }
}

.section-title {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    color: var(--primary);
    font-weight: 800;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
}

.story-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 1.5rem;
}

.story-text strong {
    color: var(--primary);
    font-weight: 700;
}

.story-visual {
    display: grid;
    gap: 2rem;
}

.visual-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
}

@media (min-width: 768px) {
    .visual-card {
        padding: 2.5rem;
    }
}

.visual-icon {
    width: 70px;
    height: 70px;
    background: #fff7ed;
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(194, 65, 12, 0.1);
}

.visual-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--primary);
    font-weight: 700;
}

.visual-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Values Section */
.values-section {
    margin-bottom: 6rem;
}

.values-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 2rem;
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.05),
        0 20px 25px -5px rgba(0, 0, 0, 0.05),
        0 25px 50px -12px rgba(15, 23, 42, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

@media (min-width: 768px) {
    .values-card {
        padding: 4rem;
    }
}

.values-card .card-title {
    font-size: 1.75rem;
    margin-bottom: 3rem;
    color: var(--primary);
    font-weight: 800;
    text-align: center;
}

@media (min-width: 768px) {
    .values-card .card-title {
        font-size: 2.5rem;
    }
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

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

.value-item {
    position: relative;
    padding-left: 3.5rem;
}

@media (min-width: 768px) {
    .value-item {
        padding-left: 5rem;
    }
}

.value-number {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 2.5rem;
    font-weight: 800;
    color: #f1f5f9;
    line-height: 1;
}

@media (min-width: 768px) {
    .value-number {
        font-size: 4rem;
    }
}

.value-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--primary);
    font-weight: 700;
}

.value-item p {
    color: #64748b;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    margin-bottom: 3rem;
}

.cta-card-about {
    background: linear-gradient(135deg, var(--accent) 0%, #d97706 100%);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 3rem 1.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 20px 25px -5px rgba(194, 65, 12, 0.3);
}

@media (min-width: 768px) {
    .cta-card-about {
        padding: 5rem 4rem;
    }
}

.cta-card-about h2 {
    font-size: 1.75rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

@media (min-width: 768px) {
    .cta-card-about h2 {
        font-size: 2.5rem;
    }
}

.cta-card-about p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta-large {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: #ffffff;
    color: var(--accent);
    padding: 1.25rem 2rem;
    border-radius: 16px;
    font-size: 1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
    .btn-cta-large {
        padding: 1.5rem 3.5rem;
        font-size: 1.125rem;
    }
}

.btn-cta-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.4);
}