/* ===================================
   Global Styles & Variables
   =================================== */
:root {
    /* Base Colors - Changing based on theme */
    --bg-primary: #000000;
    --bg-secondary: #0f0f0f;
    --bg-card: rgba(255, 255, 255, 0.05);
    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --border-color: rgba(255, 255, 255, 0.1);

    /* Brand Colors - Constant */
    --color-red: #DC143C;
    --color-gold: #D4AF37;
    --color-gold-dark: #B8941F;

    /* Utilities */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.4);
    --shadow-light: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Light Theme Overrides */
body.light-mode {
    --bg-primary: #F9F9F9;
    --bg-secondary: #FFFFFF;
    --bg-card: #FFFFFF;
    --text-primary: #1a1a1a;
    --text-secondary: #555555;
    --border-color: rgba(0, 0, 0, 0.08);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

    /* specific adjustments for contrast */
}

/* Fix for transparent backgrounds in light mode */
body.light-mode .navbar {
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

body.light-mode .hero-overlay {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(220, 20, 60, 0.1) 100%);
}

body.light-mode .nav-link {
    color: var(--text-primary);
}

body.light-mode .hamburger span {
    background: var(--text-primary);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 100px 0;
}

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

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

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

/* ===================================
   Navigation & Theme Toggle
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border-bottom: none;
    backdrop-filter: blur(10px);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-right-group {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Theme Toggle Button */
.theme-toggle {
    cursor: pointer;
    font-size: 20px;
    color: var(--color-gold);
    padding: 8px;
    border-radius: 50%;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(15deg);
}

body.light-mode .theme-toggle:hover {
    background: rgba(0, 0, 0, 0.05);
}

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

.logo-icon {
    width: 50px;
    height: auto;
    max-height: 50px;
    object-fit: contain;
    display: block;
}

.logo-text {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-gold);
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-link {
    position: relative;
    font-weight: 500;
    color: var(--color-white);
    padding: 5px 0;
    transition: var(--transition);
}

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

.nav-link:hover {
    color: var(--color-red);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--color-white);
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    background-image: url('https://images.unsplash.com/photo-1596524430615-b46476dd9963?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(220, 20, 60, 0.4) 100%);
    backdrop-filter: blur(2px);
    z-index: 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-left {
    color: var(--color-white);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    cursor: pointer;
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.social-icon.facebook {
    background: #1877F2;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon.whatsapp {
    background: #25D366;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--color-white) 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hire-me {
    margin: 30px 0 40px;
    position: relative;
    display: inline-block;
}

.underline {
    width: 100%;
    height: 2px;
    background: var(--color-white);
    margin-bottom: 10px;
}

.hire-me-text {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-icon-wrapper {
    flex-shrink: 0;
}

.contact-icon {
    width: 24px;
    height: 24px;
    color: var(--color-white);
}

.contact-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.contact-icon-wrapper.email-icon {
    background: var(--color-red);
    padding: 8px;
    border-radius: 4px;
    width: 40px;
    height: 40px;
}

.contact-icon-wrapper.whatsapp-icon {
    background: #25D366;
    padding: 8px;
    border-radius: 4px;
    width: 40px;
    height: 40px;
}

.contact-item a {
    font-size: 18px;
    color: var(--color-white);
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--color-red);
}

.availability {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 500;
}

.availability-icon {
    width: 24px;
    height: 24px;
    stroke-width: 2;
}

.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 60px 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.geometric-logo {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 30px;
}

.logo-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    margin: 0 auto 30px;
    display: block;
    object-fit: contain;
}

.cube {
    position: absolute;
    border: 3px solid var(--color-gold);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
}

.cube-1 {
    width: 80px;
    height: 80px;
    top: 0;
    left: 0;
    transform: rotate(-15deg);
    clip-path: polygon(0% 0%, 100% 0%, 85% 100%, 15% 100%);
}

.cube-2 {
    width: 70px;
    height: 70px;
    bottom: 0;
    right: 0;
    transform: rotate(20deg);
    clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 85%);
}

.company-name {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.company-tagline {
    font-size: 16px;
    color: var(--color-white);
    font-weight: 300;
    letter-spacing: 1px;
}

/* ===================================
   Services Section
   =================================== */
.services {
    background: var(--color-gray);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--color-white);
}

.section-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(220, 20, 60, 0.1), transparent);
    transition: var(--transition);
}

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

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-red);
    box-shadow: var(--shadow);
    background: rgba(255, 255, 255, 0.08);
}

.service-card.featured {
    border-color: var(--color-gold);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(220, 20, 60, 0.05) 100%);
}

.service-card.featured:hover {
    border-color: var(--color-gold);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--color-white);
}

.service-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.featured-badge {
    display: inline-block;
    background: var(--color-gold);
    color: var(--color-black);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-top: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===================================
   About Section
   =================================== */
.about {
    background: var(--color-black);
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text .section-title {
    text-align: left;
    margin-bottom: 30px;
}

.about-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    line-height: 1.8;
}

.about-features {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: var(--color-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
    color: var(--color-white);
}

.feature-item h4 {
    font-size: 20px;
    margin-bottom: 5px;
    color: var(--color-white);
}

.feature-item p {
    color: rgba(255, 255, 255, 0.7);
}

.about-visual {
    height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.geometric-pattern {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.1) 0%, rgba(212, 175, 55, 0.1) 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.geometric-pattern::before,
.geometric-pattern::after {
    content: '';
    position: absolute;
    border: 2px solid var(--color-gold);
    opacity: 0.3;
}

.geometric-pattern::before {
    width: 150px;
    height: 150px;
    top: 20%;
    left: 10%;
    transform: rotate(45deg);
    border-radius: 10px;
}

.geometric-pattern::after {
    width: 120px;
    height: 120px;
    bottom: 20%;
    right: 10%;
    transform: rotate(-45deg);
    border-radius: 10px;
}

/* ===================================
   Discount Banner Section
   =================================== */
.discount-banner {
    background: linear-gradient(135deg, var(--color-red) 0%, #720f0f 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.discount-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: rotate(45deg);
}

.discount-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.discount-text {
    text-align: left;
}

.discount-label {
    display: inline-block;
    background: var(--color-black);
    color: var(--color-white);
    padding: 8px 20px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.discount-title {
    font-size: 64px;
    font-weight: 800;
    color: #FFD700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.discount-amount {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-white);
    text-transform: uppercase;
}

.discount-visual {
    position: relative;
}

.discount-shape {
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    transform: rotate(15deg);
    position: relative;
}

.discount-shape::before,
.discount-shape::after {
    content: '!';
    position: absolute;
    font-size: 80px;
    font-weight: 900;
    color: #FFD700;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* ===================================
   Contact Section
   =================================== */
.contact {
    background: var(--color-gray);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 50px;
}

.contact-form-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.qr-code-section {
    display: flex;
    justify-content: center;
    align-items: center;
}

.qr-code {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.qr-image {
    width: 200px;
    height: 200px;
    object-fit: contain;
    background: var(--color-white);
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.qr-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 500;
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 35px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-red);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.15);
}


/* ===================================
   Admin Dashboard Styles
   =================================== */
.admin-body {
    background: var(--bg-secondary);
    min-height: 100vh;
}

.admin-container {
    display: flex;
    min-height: 100vh;
}

.admin-sidebar {
    width: 250px;
    background: var(--bg-primary);
    border-right: 1px solid var(--border-color);
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.admin-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px;
    font-weight: 700;
    font-size: 20px;
    color: var(--color-gold);
}

.admin-logo-img {
    width: 30px;
}

.admin-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.admin-link {
    padding: 12px 15px;
    border-radius: 8px;
    color: var(--text-secondary);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
}

.admin-link:hover,
.admin-link.active {
    background: var(--color-red);
    color: #fff;
}

.admin-main {
    flex: 1;
    padding: 30px;
    overflow-y: auto;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.admin-user-profile {
    display: flex;
    align-items: center;
    gap: 15px;
}

.admin-avatar {
    width: 40px;
    height: 40px;
    background: var(--color-gold);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* Admin Stats Grid */
.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    background: var(--bg-card);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: var(--shadow-light);
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.stat-icon.red {
    background: rgba(220, 20, 60, 0.1);
    color: var(--color-red);
}

.stat-icon.gold {
    background: rgba(212, 175, 55, 0.1);
    color: var(--color-gold);
}

.stat-icon.blue {
    background: rgba(24, 119, 242, 0.1);
    color: #1877F2;
}

.stat-icon.green {
    background: rgba(37, 211, 102, 0.1);
    color: #25D366;
}

.stat-info h3 {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 5px;
}

.stat-info p {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
}

/* Admin Table */
.admin-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-card);
    border-radius: 10px;
    overflow: hidden;
}

.admin-table th,
.admin-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.admin-table th {
    background: rgba(0, 0, 0, 0.2);
    font-weight: 600;
    color: var(--color-gold);
}

body.light-mode .admin-table th {
    background: rgba(0, 0, 0, 0.05);
}

.status-badge {
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.status-badge.pending {
    background: rgba(255, 255, 0, 0.2);
    color: #FFD700;
}

.status-badge.completed {
    background: rgba(0, 255, 0, 0.2);
    color: #00FF00;
}

.status-badge.progress {
    background: rgba(0, 0, 255, 0.2);
    color: #00BFFF;
}

.btn-action {
    padding: 5px 10px;
    border: 1px solid var(--border-color);
    background: transparent;
    color: var(--text-primary);
    border-radius: 5px;
    cursor: pointer;
}

.btn-action:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

/* ===================================
   Service Details Styles
   =================================== */
.details-hero {
    padding: 150px 0 80px;
    background: var(--bg-secondary);
    text-align: center;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-gold);
    margin-bottom: 20px;
    font-weight: 500;
}

.details-title {
    font-size: 42px;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.details-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.details-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.details-info h2 {
    margin-bottom: 20px;
    font-size: 28px;
}

.details-list {
    list-style: none;
    margin: 30px 0;
}

.details-list li {
    margin-bottom: 15px;
    display: flex;
    gap: 15px;
    color: var(--text-secondary);
}

.details-list li i {
    color: var(--color-red);
    margin-top: 5px;
}

.details-list li strong {
    color: var(--text-primary);
}

.payment-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    position: sticky;
    top: 100px;
}

body.light-mode .payment-card {
    box-shadow: var(--shadow);
    background: #fff;
}

.plan-option {
    padding: 20px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    margin-bottom: 20px;
    transition: var(--transition);
}

.plan-option:hover {
    border-color: var(--color-gold);
    transform: translateY(-5px);
}

.plan-option.highlight {
    border-color: var(--color-gold);
    background: rgba(212, 175, 55, 0.05);
}

.plan-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.plan-header h4 {
    font-size: 16px;
    margin: 0;
}

.price {
    font-weight: 700;
    color: var(--color-red);
}

.plan-desc {
    font-size: 13px;
    margin: 0;
}

.methods-icons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    font-size: 12px;
    color: var(--text-secondary);
}

.full-width {
    width: 100%;
    text-align: center;
}

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

    .admin-container {
        flex-direction: column;
    }

    .admin-sidebar {
        width: 100%;
        height: auto;
        border-right: none;
        border-bottom: 1px solid var(--border-color);
    }
}

height: 50px;
background: var(--color-red);
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 20px;
}

.contact-card-icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-white);
}

.contact-card-icon.whatsapp-icon {
    background: #25D366;
}

.contact-card-icon.email-icon {
    background: #EA4335;
}

.contact-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--color-white);
}

.contact-card a,
.contact-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
}

.contact-card a:hover {
    color: var(--color-red);
}

.contact-form {
    background: rgba(255, 255, 255, 0.03);
    padding: 45px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--color-white);
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-red);
    background: rgba(255, 255, 255, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.btn-primary {
    width: 100%;
    padding: 18px 30px;
    background: var(--color-red);
    color: var(--color-white);
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    background: #B8122F;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.3);
}

.btn-primary:active {
    transform: translateY(0);
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: linear-gradient(to bottom, #050505, #000000);
    padding: 80px 0 30px;
    position: relative;
    border-top: 1px solid transparent;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-red), var(--color-gold));
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--color-gold);
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--color-red);
    padding-left: 5px;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.social-link svg {
    width: 20px;
    height: 20px;
    color: var(--color-white);
}

.social-link.facebook {
    background: #1877F2;
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link.whatsapp {
    background: #25D366;
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border-color: transparent;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-title {
        font-size: 56px;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        flex-direction: column;
    }

    .discount-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .discount-title {
        font-size: 48px;
    }

    .discount-amount {
        font-size: 24px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        gap: 30px;
        transition: var(--transition);
    }

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

    .hamburger {
        display: flex;
    }

    .hero-title {
        font-size: 42px;
    }

    .hire-me-text {
        font-size: 28px;
    }

    .section-title {
        font-size: 36px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .hero-black,
    .hero-red {
        width: 100%;
    }

    .hero-black {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .hero-red {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        opacity: 0.3;
    }

    .discount-title {
        font-size: 36px;
    }

    .discount-amount {
        font-size: 20px;
    }

    .qr-image {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 480px) {
    section {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 32px;
    }

    .hire-me-text {
        font-size: 24px;
    }

    .contact-form {
        padding: 25px;
    }

    .logo-text {
        font-size: 14px;
    }
}

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

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

.service-card,
.contact-card,
.feature-item {
    animation: fadeInUp 0.6s ease-out backwards;
}

.service-card:nth-child(1) {
    animation-delay: 0.1s;
}

.service-card:nth-child(2) {
    animation-delay: 0.2s;
}

.service-card:nth-child(3) {
    animation-delay: 0.3s;
}

.service-card:nth-child(4) {
    animation-delay: 0.4s;
}

.service-card:nth-child(5) {
    animation-delay: 0.5s;
}

.service-card:nth-child(6) {
    animation-delay: 0.6s;
}


/* ===================================
   Hero Buttons
   =================================== */
.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.hero-btn {
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.hero-btn.primary {
    background: var(--color-red);
    color: var(--color-white);
    border: 2px solid var(--color-red);
}

.hero-btn.primary:hover {
    background: transparent;
    color: var(--color-red);
}

.hero-btn.secondary {
    background: var(--color-gold);
    color: var(--color-black);
    border: 2px solid var(--color-gold);
}

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

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

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

@media (max-width: 768px) {
    .hero-buttons {
        justify-content: center;
    }

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