/* =========================================
   VARIABLES & RESET
   ========================================= */
:root {
    --primary-color: #F0A500;
    /* Golden Amber - Brownish Yellow */
    --primary-dark: #cc8e00;
    --text-color: #ededed;
    --text-muted: #a0a0a0;
    --bg-color: #0d0d0d;
    --bg-secondary: #161616;
    --card-bg: #1f1f1f;
    --black: #000000;
    --white: #ffffff;
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --transition: all 0.3s ease;
    --container-width: 1200px;
}

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

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--white);
    text-transform: uppercase;
    line-height: 1.2;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* =========================================
   UTILITIES
   ========================================= */
.highlight {
    color: var(--primary-color);
}

.text-stroke {
    -webkit-text-stroke: 1px var(--white);
    color: transparent;
}

.section {
    padding: 6rem 0;
}

.section-tag {
    color: var(--primary-color);
    letter-spacing: 2px;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: var(--font-heading);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--black);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
}

.btn-outline {
    border: 1px solid var(--white);
    color: var(--white);
    margin-left: 1rem;
    background: transparent;
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--black);
    transform: translateY(-3px);
}

.btn-text {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.btn-text:hover {
    gap: 1rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* =========================================
   NAVIGATION
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    transition: var(--transition);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent);
}

.navbar.scrolled {
    background: rgba(13, 13, 13, 0.95);
    padding: 1rem 0;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
}

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

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s;
}

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

.btn-cta-nav {
    border: 1px solid var(--primary-color);
    padding: 0.5rem 1.5rem;
    color: var(--primary-color);
}

.btn-cta-nav:hover {
    background: var(--primary-color);
    color: var(--black);
}

.menu-toggle {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--white);
    transition: var(--transition);
}

/* =========================================
   HERO SECTION - GEOMETRIC
   ========================================= */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #030303;
}

/* Gradient Background */
.gradient-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, transparent 50%, rgba(244, 63, 94, 0.05) 100%);
    filter: blur(100px);
    z-index: 0;
}

/* Background Image Layer */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.3) 100%);
}

/* Floating Geometric Shapes */
.geometric-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 2;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.08), transparent);
    backdrop-filter: blur(2px);
    border: 2px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px 0 rgba(255, 255, 255, 0.1);
    opacity: 0;
    animation: shapeFloat 12s ease-in-out infinite, shapeFadeIn 2.4s ease-out forwards;
}

.shape::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.2), transparent 70%);
}

/* Shape 1 - Large Indigo */
.shape-1 {
    width: 600px;
    height: 140px;
    left: -10%;
    top: 20%;
    background: linear-gradient(to right, rgba(99, 102, 241, 0.15), transparent);
    transform: rotate(12deg);
    animation-delay: 0.3s;
}

/* Shape 2 - Large Rose */
.shape-2 {
    width: 500px;
    height: 120px;
    right: 0%;
    top: 75%;
    background: linear-gradient(to right, rgba(244, 63, 94, 0.15), transparent);
    transform: rotate(-15deg);
    animation-delay: 0.5s;
}

/* Shape 3 - Medium Violet */
.shape-3 {
    width: 300px;
    height: 80px;
    left: 10%;
    bottom: 10%;
    background: linear-gradient(to right, rgba(139, 92, 246, 0.15), transparent);
    transform: rotate(-8deg);
    animation-delay: 0.4s;
}

/* Shape 4 - Small Amber */
.shape-4 {
    width: 200px;
    height: 60px;
    right: 20%;
    top: 15%;
    background: linear-gradient(to right, rgba(251, 191, 36, 0.15), transparent);
    transform: rotate(20deg);
    animation-delay: 0.6s;
}

/* Shape 5 - Tiny Cyan */
.shape-5 {
    width: 150px;
    height: 40px;
    left: 25%;
    top: 10%;
    background: linear-gradient(to right, rgba(34, 211, 238, 0.15), transparent);
    transform: rotate(-25deg);
    animation-delay: 0.7s;
}

@keyframes shapeFadeIn {
    0% {
        opacity: 0;
        transform: translateY(-150px) rotate(var(--initial-rotate, 0deg));
    }

    100% {
        opacity: 1;
        transform: translateY(0) rotate(var(--final-rotate, 0deg));
    }
}

@keyframes shapeFloat {

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

    50% {
        transform: translateY(15px);
    }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 0 2rem;
}

/* Badge */
.badge-container {
    margin-bottom: 3rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(244, 63, 94, 0.8);
}

.badge-text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.05em;
}

/* Headline */
.geometric-headline {
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.gradient-text-white {
    background: linear-gradient(to bottom, #ffffff, rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-color {
    background: linear-gradient(to right, rgb(165, 180, 252), rgba(255, 255, 255, 0.9), rgb(252, 165, 165));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Description */
.geometric-desc {
    max-width: 600px;
    margin: 0 auto 2.5rem;
    color: rgba(255, 255, 255, 0.4);
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.6;
    font-weight: 300;
    letter-spacing: 0.02em;
}

/* Bottom Gradient Overlay */
.bottom-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #030303, transparent 40%, rgba(3, 3, 3, 0.8) 100%);
    pointer-events: none;
    z-index: 5;
}

.scroll-down {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    z-index: 20;
}

.scroll-down a {
    color: var(--white);
    font-size: 1.5rem;
}

@keyframes bounce {

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

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

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

/* =========================================
   STATS SECTION
   ========================================= */
.stats-section {
    background-color: var(--bg-secondary);
    padding: 3rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

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

.stat-item h3 {
    font-size: 3rem;
    color: var(--primary-color);
}

.stat-item p {
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* =========================================
   ABOUT SECTION
   ========================================= */
.about {
    background-color: var(--bg-color);
}

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

.image-wrapper {
    position: relative;
}

.image-wrapper img {
    border-radius: 4px;
    filter: grayscale(80%);
    transition: var(--transition);
}

.image-wrapper:hover img {
    filter: grayscale(0%);
}

.accent-box {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    border: 2px solid var(--primary-color);
    z-index: -1;
}

.lead-text {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    border-left: 3px solid var(--primary-color);
    padding-left: 1rem;
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.feature-list {
    margin-top: 2rem;
}

.feature-list li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-list i {
    color: var(--primary-color);
}

/* =========================================
   SERVICES SECTION
   ========================================= */
.services {
    background-color: var(--bg-secondary);
}

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

/* Center the last item (Lifestyle) under the middle item (Strength) */
.services-grid .service-card:last-child {
    grid-column: 2;
}

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

    .services-grid .service-card:last-child {
        grid-column: auto;
        /* Reset for 2-column layout */
    }
}

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

.service-card {
    background: var(--card-bg);
    padding: 3rem 2rem;
    border: 1px solid transparent;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background-color: var(--primary-color);
    transition: height 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.05);
    background: #252525;
}

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

.icon-box {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* =========================================
   GALLERY SECTION
   ========================================= */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 1rem;
}

.gallery-item {
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

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

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

/* Masonry-ish Look */
.item-1 {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.item-2 {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

.item-3 {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
}

.item-4 {
    grid-column: 2 / 4;
    grid-row: 2 / 3;
}

/* =========================================
   TESTIMONIALS SECTION
   ========================================= */
.testimonials {
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('Images/web/gallery1.jpg');
    background-size: cover;
    background-attachment: fixed;
    padding: 8rem 0;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: start;
}

.testimonial-content {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 8px;
    height: 100%;
}

.quote-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.quote-text {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-style: italic;
    line-height: 1.4;
    margin-bottom: 2rem;
    color: var(--white);
}

.client-name {
    color: var(--primary-color);
}

/* =========================================
   PRICING SECTION
   ========================================= */
.pricing {
    background-color: var(--bg-secondary);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

.pricing-card.popular {
    background: linear-gradient(145deg, #252525, #1a1a1a);
    border: 1px solid var(--primary-color);
    transform: scale(1.05);
    z-index: 2;
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-5px);
}

.popular-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: var(--black);
    padding: 0.5rem 1.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 20px;
    letter-spacing: 1px;
}

.card-header {
    text-align: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 2rem;
}

.card-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-heading);
}

.price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.plan-features {
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.plan-features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-color);
    font-size: 0.95rem;
}

.plan-features li.disabled {
    color: rgba(255, 255, 255, 0.2);
    text-decoration: line-through;
}

.plan-features li.disabled i {
    color: rgba(255, 255, 255, 0.2);
}

.plan-features i {
    color: var(--primary-color);
    min-width: 20px;
}

/* =========================================
   CONTACT SECTION
   ========================================= */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info .success-text {
    margin-bottom: 2rem;
    color: var(--text-muted);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-item .icon {
    width: 50px;
    height: 50px;
    background-color: rgba(240, 165, 0, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.info-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    color: var(--white);
}

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

.social-links {
    margin-top: 3rem;
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.1rem;
    color: var(--white);
}

.social-links a:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--black);
}

.form-group {
    margin-bottom: 1.5rem;
}

input,
select,
textarea {
    width: 100%;
    padding: 1rem;
    background-color: var(--bg-secondary);
    border: 1px solid #333;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    border-radius: 4px;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* =========================================
   FOOTER
   ========================================= */
footer {
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background-color: var(--bg-color);
    font-size: 0.9rem;
    color: var(--text-muted);
}

.credits {
    margin-top: 0.5rem;
    font-size: 0.8rem;
}

/* =========================================
   ANIMATIONS & RESPONSIVE
   ========================================= */
.fade-in,
.fade-in-up,
.reveal-left,
.reveal-right,
.reveal-up {
    opacity: 0;
    transition: all 0.8s ease-out;
}

.fade-in-up {
    transform: translateY(30px);
}

.reveal-left {
    transform: translateX(-50px);
}

.reveal-right {
    transform: translateX(50px);
}

.reveal-up {
    transform: translateY(50px);
}

.active-anim {
    opacity: 1;
    transform: translate(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

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

    /* Geometric Hero Shapes - Tablet */
    .shape-1 {
        width: 400px;
        height: 100px;
        left: -15%;
    }

    .shape-2 {
        width: 350px;
        height: 90px;
        right: -5%;
    }

    .shape-3 {
        width: 200px;
        height: 60px;
    }

    .shape-4 {
        width: 150px;
        height: 50px;
    }

    .shape-5 {
        width: 100px;
        height: 30px;
    }

    .headline {
        font-size: 3.5rem;
    }

    .about-grid,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 250px);
    }

    .item-1 {
        grid-column: 1 / 3;
        grid-row: 1 / 2;
    }

    .item-2 {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
    }

    .item-3 {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
    }

    .item-4 {
        grid-column: 1 / 3;
        grid-row: 3 / 4;
    }
}

@media (max-width: 768px) {

    /* Geometric Hero Shapes - Mobile */
    .shape-1,
    .shape-2 {
        width: 300px;
        height: 80px;
    }

    .shape-3 {
        width: 150px;
        height: 40px;
    }

    .shape-4,
    .shape-5 {
        display: none;
        /* Hide smaller shapes on mobile for cleaner look */
    }

    .hero-content {
        padding: 0 1rem;
    }

    .badge-container {
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 75%;
        background-color: #111;
        flex-direction: column;
        justify-content: center;
        transition: 0.4s;
    }

    .nav-menu.active {
        right: 0;
    }

    .menu-toggle {
        display: block;
        z-index: 1001;
    }

    .menu-toggle.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero-content {
        text-align: center;
        padding-top: 6rem;
    }

    .headline {
        font-size: 2.8rem;
    }

    .hero-desc {
        margin: 0 auto 2rem auto;
    }

    .stats-grid {
        gap: 1rem;
    }

    .stat-item h3 {
        font-size: 2rem;
    }
}