:root {
    --gold: #D4AF37;
    --gold-light: #F4C430;
    --gold-dark: #AA8C2C;
    --black: #0a0a0a;
    --dark-grey: #1a1a1a;
    --text-light: #f5f5f5;
    --text-grey: #a0a0a0;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--black);
    color: var(--text-light);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography Scale */
h1 {
    font-size: 3.5rem;
    line-height: 1.1;
}

h2 {
    font-size: 2.5rem;
    color: var(--gold);
}

h3 {
    font-size: 1.5rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:hover {
    background: var(--gold);
    color: var(--black);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.btn-primary {
    background: var(--gold);
    color: var(--black);
    border: none;
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: #000000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding: 15px 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 100px;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: var(--gold);
}

/* Mobile Menu */
.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--gold);
    margin: 5px 0;
    transition: 0.4s;
}

/* Common Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gold);
}

.section-subtitle {
    display: block;
    color: var(--text-grey);
    font-size: 1rem;
    margin-top: 10px;
    letter-spacing: 2px;
}

/* Footer */
footer {
    background: var(--dark-grey);
    border-top: 1px solid #333;
    padding: 60px 0 20px;
    text-align: center;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    text-align: left;
}

.footer-col h4 {
    color: var(--gold);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: var(--text-light);
    font-size: 1.2rem;
}

.copyright {
    color: var(--text-grey);
    font-size: 0.8rem;
    border-top: 1px solid #333;
    padding-top: 20px;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.8s ease forwards;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('images/hero-bg.png') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    background: radial-gradient(circle, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-btns {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border: 2px solid var(--gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.feature-list {
    list-style: none;
    margin-top: 20px;
}

.feature-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-grey);
}

.feature-list i {
    color: var(--gold);
}

/* Services Preview */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--dark-grey);
    padding: 30px;
    border: 1px solid #333;
    transition: 0.3s;
    text-align: center;
}

.service-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
    display: block;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 30px;
}

.team-card {
    background: var(--dark-grey);
    border: 1px solid #333;
    text-align: center;
    overflow: hidden;
    transition: 0.3s;
}

.team-card:hover {
    border-color: var(--gold);
}

.team-img-placeholder {
    height: 200px;
    background: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--gold);
    font-weight: 700;
}

.team-info {
    padding: 20px;
}

.team-info h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--text-light);
}

.team-info span {
    font-size: 0.8rem;
    color: var(--gold);
}

/* Portfolio Placeholder */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.yt-placeholder {
    aspect-ratio: 16/9;
    background: #000;
    border: 1px solid #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.yt-placeholder i {
    font-size: 3rem;
    color: red;
    margin-bottom: 10px;
}

/* Gift Section */
.gift-section {
    background: var(--dark-grey);
    border-top: 1px solid var(--gold);
    border-bottom: 1px solid var(--gold);
}

.gift-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.gift-image img {
    max-width: 400px;
    border-radius: 5px;
}

/* Contact / CTA */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    text-align: center;
}

.contact-box i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 15px;
}

/* Service Page Specifics */
.page-header {
    background-size: cover;
    background-position: center;
    padding: 150px 0 100px;
    position: relative;
    background-attachment: fixed;
}

.service-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    background: rgba(255, 255, 255, 0.02);
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
}

.service-item:hover {
    border-color: var(--gold);
    transform: translateX(10px);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--gold);
    min-width: 60px;
}

/* Calculator specific */
.calculator-section {
    background: var(--dark-grey);
}

.calculator-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    background: #050505;
    padding: 40px;
    border: 1px solid var(--gold);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--gold);
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

.form-group select,
.form-group input[type="number"] {
    width: 100%;
    padding: 15px;
    background: #151515;
    border: 1px solid #333;
    color: white;
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
}

.form-group select:focus,
.form-group input:focus {
    border-color: var(--gold);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 15px;
}

.checkbox-group input {
    width: 20px;
    height: 20px;
    accent-color: var(--gold);
}

.calc-result {
    text-align: center;
    border-left: 1px solid #333;
    padding-left: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.price-display {
    font-size: 3rem;
    color: var(--gold);
    font-family: var(--font-heading);
    font-weight: 700;
    margin: 20px 0;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.note {
    font-size: 0.8rem;
    color: var(--text-grey);
    font-style: italic;
}

@media(max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hamburger {
        display: block;
    }

    .nav-links {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background: var(--black);
        width: 100%;
        text-align: center;
        padding: 40px 0;
        transition: 0.3s;
        border-bottom: 1px solid var(--gold);
    }

    .nav-links.active {
        left: 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .contact-methods {
        grid-template-columns: 1fr;
    }

    .gift-content {
        flex-direction: column;
        text-align: center;
    }

    .calculator-wrapper {
        grid-template-columns: 1fr;
        border-left: none;
        padding: 20px;
    }

    .calc-result {
        border-left: none;
        border-top: 1px solid #333;
        padding-left: 0;
        padding-top: 30px;
        margin-top: 20px;
    }

    .service-item {
        flex-direction: column;
        text-align: center;
    }
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px #25d366;
}

/* Nav Logo */
.nav-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
}

/* Portfolio Page */
.portfolio-filter {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.filter-btn {
    padding: 8px 20px;
    border: 1px solid #333;
    cursor: pointer;
    color: var(--text-grey);
    transition: 0.3s;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.filter-btn.active,
.filter-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.category-block {
    margin-bottom: 60px;
}

.category-block h3 {
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
    margin-bottom: 30px;
    font-size: 1.8rem;
    color: var(--gold);
}

/* Reviews Section */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background: #111;
    padding: 30px;
    border: 1px solid #222;
    position: relative;
    transition: 0.3s;
}

.review-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.quote-icon {
    font-size: 2rem;
    color: var(--gold);
    opacity: 0.3;
    margin-bottom: 15px;
}

.review-card p {
    font-style: italic;
    color: #ccc;
    margin-bottom: 20px;
}

.reviewer-info h4 {
    margin-bottom: 5px;
    color: var(--gold);
    font-size: 1.1rem;
}

.reviewer-info span {
    font-size: 0.8rem;
    color: #888;
}

/* Reviewer Profile Images */
.reviewer-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.reviewer-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
}

/* ========================================= */
/* GIFT CARD SECTION STYLES */
/* ========================================= */

.gift-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--black) 0%, #0d0d0d 50%, var(--black) 100%);
    position: relative;
    overflow: hidden;
}

/* Background decorative glow */
.gift-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 0;
    pointer-events: none;
}

.gift-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.gift-card {
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
}

.gift-card:hover {
    transform: translateY(-15px);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(212, 175, 55, 0.1);
}

/* Popular Card Highlight */
.gift-card.popular {
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.9) 0%, rgba(10, 10, 10, 0.95) 100%);
    border: 1px solid var(--gold);
    transform: scale(1.05);
    /* Slight default scale */
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(212, 175, 55, 0.15);
}

.gift-card.popular:hover {
    transform: scale(1.05) translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(212, 175, 55, 0.25);
}

.popular-tag {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--gold);
    color: var(--black);
    padding: 8px 25px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    white-space: nowrap;
}

/* Card Header */
.card-header {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.card-header h3 {
    font-size: 1.1rem;
    color: var(--text-grey);
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: 2px;
}

.card-header .price {
    font-size: 2.22rem;
    font-weight: 700;
    color: var(--text-light);
    font-family: var(--font-heading);
    letter-spacing: -0.5px;
}

/* Credit Value Highlight */
.credit-value {
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.05) 0%, rgba(212, 175, 55, 0.1) 50%, rgba(212, 175, 55, 0.05) 100%);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    border: 1px dashed rgba(212, 175, 55, 0.3);
}

.credit-value span {
    display: block;
    font-size: 0.8rem;
    color: var(--text-grey);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.credit-value strong {
    font-size: 1.6rem;
    color: var(--gold);
    display: block;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

/* Features List */
.features {
    list-style: none;
    margin-bottom: auto;
    /* Pushes button to bottom */
    text-align: left;
    padding: 0 10px;
}

.features li {
    margin-bottom: 15px;
    color: #ddd;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.features li i {
    color: var(--gold);
    font-size: 0.9rem;
    min-width: 20px;
    /* Aligns text properly */
    text-align: center;
}

/* Buttons */
.gift-card a.btn {
    width: 100%;
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 14px 20px;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-light);
    background: transparent;
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(212, 175, 55, 0.05);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.2);
}

/* ========================================= */
/* ANIMATIONS */
/* ========================================= */

.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.stagger-delay-1 {
    transition-delay: 0.1s;
}

.stagger-delay-2 {
    transition-delay: 0.2s;
}

.stagger-delay-3 {
    transition-delay: 0.3s;
}

.stagger-delay-4 {
    transition-delay: 0.4s;
}

/* Smooth Scroll HTML */
html {
    scroll-behavior: smooth;
}