/* ==========================================
   HARTWIG WEB - 
   ========================================== */

/* Color Variables - Dark Mode Default */
:root {
    --primary-dark: #1e3c72;
    --primary-light: #2a8fd8;
    --secondary: #17a2b8;
    --accent: #2d6a4f;
    --accent-light: #43a381;
    --text-dark: #e0e0e0;
    --text-light: #b0b0b0;
    --bg-light: #1a1a2e;
    --bg-white: #0f0f1e;
    --border-color: #2a2a4e;
    --card-bg: #1a1a2e;
    --gradient: linear-gradient(135deg, #2a8fd8 0%, #43a381 100%);
    --gradient-secondary: linear-gradient(135deg, #17a2b8 0%, #43a381 100%);
    --shadow: 0 10px 30px rgba(42, 143, 216, 0.1);
    --shadow-lg: 0 20px 60px rgba(42, 143, 216, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Light Mode */
body.light-mode {
    --primary-dark: #1e3c72;
    --primary-light: #2a8fd8;
    --secondary: #17a2b8;
    --accent: #2d6a4f;
    --accent-light: #43a381;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e9ecef;
    --gradient: linear-gradient(135deg, #1e3c72 0%, #2a8fd8 100%);
    --gradient-secondary: linear-gradient(135deg, #17a2b8 0%, #43a381 100%);
    --shadow: 0 10px 30px rgba(30, 60, 114, 0.15);
    --shadow-lg: 0 20px 60px rgba(30, 60, 114, 0.2);
}

body.light-mode {
    background-color: #f8f9fa;
    background-image: 
        linear-gradient(0deg, transparent 24%, rgba(30, 60, 114, 0.05) 25%, rgba(30, 60, 114, 0.05) 26%, transparent 27%, transparent 74%, rgba(30, 60, 114, 0.05) 75%, rgba(30, 60, 114, 0.05) 76%, transparent 77%, transparent),
        linear-gradient(90deg, transparent 24%, rgba(30, 60, 114, 0.05) 25%, rgba(30, 60, 114, 0.05) 26%, transparent 27%, transparent 74%, rgba(30, 60, 114, 0.05) 75%, rgba(30, 60, 114, 0.05) 76%, transparent 77%, transparent);
    background-size: 50px 50px;
    background-position: 0 0, 25px 25px;
    background-attachment: fixed;
}

body.light-mode::before {
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(42, 143, 216, 0.1), rgba(42, 143, 216, 0)),
        radial-gradient(2px 2px at 60px 70px, rgba(23, 162, 184, 0.1), rgba(23, 162, 184, 0)),
        radial-gradient(1px 1px at 50px 50px, rgba(67, 163, 129, 0.1), rgba(67, 163, 129, 0)),
        radial-gradient(1px 1px at 130px 80px, rgba(42, 143, 216, 0.1), rgba(42, 143, 216, 0)),
        radial-gradient(2px 2px at 90px 10px, rgba(23, 162, 184, 0.1), rgba(23, 162, 184, 0));
    opacity: 0.2;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #0a0e27;
    background-image: 
        linear-gradient(0deg, transparent 24%, rgba(42, 143, 216, 0.08) 25%, rgba(42, 143, 216, 0.08) 26%, transparent 27%, transparent 74%, rgba(42, 143, 216, 0.08) 75%, rgba(42, 143, 216, 0.08) 76%, transparent 77%, transparent),
        linear-gradient(90deg, transparent 24%, rgba(42, 143, 216, 0.08) 25%, rgba(42, 143, 216, 0.08) 26%, transparent 27%, transparent 74%, rgba(42, 143, 216, 0.08) 75%, rgba(42, 143, 216, 0.08) 76%, transparent 77%, transparent);
    background-size: 50px 50px;
    background-position: 0 0, 25px 25px;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, #2a8fd8, rgba(42, 143, 216, 0)),
        radial-gradient(2px 2px at 60px 70px, #17a2b8, rgba(23, 162, 184, 0)),
        radial-gradient(1px 1px at 50px 50px, #43a381, rgba(67, 163, 129, 0)),
        radial-gradient(1px 1px at 130px 80px, #2a8fd8, rgba(42, 143, 216, 0)),
        radial-gradient(2px 2px at 90px 10px, #17a2b8, rgba(23, 162, 184, 0));
    background-repeat: repeat;
    background-size: 200px 200px;
    animation: drift 20s linear infinite;
    pointer-events: none;
    opacity: 0.4;
    z-index: -1;
}

@keyframes drift {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.2rem;
}

p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

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

a:hover {
    color: var(--secondary);
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    text-align: center;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(42, 143, 216, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.5s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(42, 143, 216, 0.5);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-secondary {
    background: transparent;
    color: var(--primary-light);
    border: 2px solid var(--primary-light);
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--primary-light);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.btn-secondary:hover {
    color: white;
    border-color: var(--primary-light);
}

.btn-secondary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
    width: 100%;
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(15px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(42, 143, 216, 0.1);
}

body.light-mode .navbar {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(42, 143, 216, 0.15);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.logo i {
    font-size: 2rem;
    color: var(--primary-light);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #e0e0e0;
    font-weight: 500;
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient);
    border-radius: 3px;
    transition: width 0.3s ease;
}

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

.nav-link.active,
.nav-link.active::after {
    color: var(--primary-light);
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 6px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: #2a8fd8;
    border-radius: 2px;
    transition: var(--transition);
}

body.light-mode .mobile-menu-btn span {
    background: var(--primary-light);
}

/* Theme Toggle Button */
.theme-toggle {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: #2a8fd8;
    transition: var(--transition);
    padding: 8px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-toggle:hover {
    transform: scale(1.1);
    color: var(--secondary);
}

body.light-mode .theme-toggle {
    color: var(--primary-light);
}

/* Hero Section */
.hero {
    margin-top: 80px;
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(42, 143, 216, 0.03) 0%, rgba(67, 163, 129, 0.02) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(23, 162, 184, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

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

.hero-content h1 {
    margin-bottom: 20px;
    line-height: 1.1;
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

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

.floating-card {
    position: absolute;
    width: 120px;
    height: 120px;
    background: var(--gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    box-shadow: 0 15px 40px rgba(42, 143, 216, 0.25);
    animation: float 3s ease-in-out infinite;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.floating-card.card-2 {
    background: var(--gradient-secondary);
    animation-delay: 0.3s;
    width: 100px;
    height: 100px;
}

.floating-card.card-3 {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    animation-delay: 0.6s;
    width: 90px;
    height: 90px;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-30px);
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.1rem;
    margin-top: 30px;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(42, 143, 216, 0.02) 100%);
}

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

.service-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    box-shadow: 0 5px 20px rgba(42, 143, 216, 0.08);
    transition: var(--transition);
    text-align: center;
    backdrop-filter: blur(10px);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(42, 143, 216, 0.2);
    border-color: var(--primary-light);
    background: linear-gradient(135deg, rgba(42, 143, 216, 0.05), rgba(67, 163, 129, 0.05));
}

body.light-mode .service-card {
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: none;
}

body.light-mode .service-card:hover {
    box-shadow: var(--shadow-lg);
    background: white;
    border: none;
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 25px rgba(42, 143, 216, 0.25);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 0 12px 35px rgba(42, 143, 216, 0.4);
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-card p {
    font-size: 0.95rem;
}

/* Portfolio Section */
.portfolio {
    padding: 100px 0;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 40px;
}

.portfolio-card {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(42, 143, 216, 0.08);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(42, 143, 216, 0.2);
    border-color: var(--primary-light);
}

body.light-mode .portfolio-card {
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: none;
}

body.light-mode .portfolio-card:hover {
    box-shadow: var(--shadow-lg);
    background: white;
    border: none;
}

.portfolio-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(42, 143, 216, 0.1), rgba(67, 163, 129, 0.1));
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 60, 114, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    color: white;
    text-align: center;
}

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

.portfolio-overlay h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.portfolio-info {
    padding: 30px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.1) 100%);
}

.portfolio-info h3 {
    margin-bottom: 10px;
    color: var(--text-dark);
}

.portfolio-info p {
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.portfolio-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tag {
    display: inline-block;
    background: var(--primary-light);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: var(--transition);
}

.tag:hover {
    background: var(--secondary);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(42, 143, 216, 0.3);
}

/* About Section */
.about {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(42, 143, 216, 0.02) 0%, transparent 100%);
    position: relative;
}

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

.about-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat {
    text-align: center;
}

.stat h4 {
    font-size: 2.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat p {
    font-size: 0.95rem;
    color: var(--text-light);
}

.team-illustration {
    display: flex;
    justify-content: center;
    gap: 40px;
    position: relative;
}

.team-member {
    width: 100px;
    height: 100px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    animation: bounce 2s ease-in-out infinite;
}

.team-member:nth-child(2) {
    background: var(--gradient-secondary);
}

.team-member:nth-child(3) {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(42, 143, 216, 0.02) 0%, rgba(67, 163, 129, 0.01) 100%);
}

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

.contact-form {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(42, 143, 216, 0.08);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

body.light-mode .contact-form {
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: none;
}

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

.form-group.full-width {
    grid-column: 1 / -1;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    background: rgba(42, 143, 216, 0.05);
    color: var(--text-dark);
}

body.light-mode .contact-form input,
body.light-mode .contact-form select,
body.light-mode .contact-form textarea {
    background: white;
    color: var(--text-dark);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(42, 143, 216, 0.1);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 400;
    cursor: pointer;
}

.checkbox-label input {
    width: auto;
    margin: 0;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.info-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(42, 143, 216, 0.08);
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(42, 143, 216, 0.2);
    border-color: var(--primary-light);
}

body.light-mode .info-card {
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: none;
}

.info-card i {
    font-size: 2.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.info-card h4 {
    margin-bottom: 10px;
    color: var(--text-dark);
    font-size: 1.2rem;
    transition: var(--transition);
}

.info-card:hover h4 {
    color: var(--primary-light);
}

.info-card p {
    font-size: 0.95rem;
}

.info-card a {
    color: var(--primary-light);
    font-weight: 600;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #050810 0%, #0a0e27 50%, #0f1a35 100%);
    color: white;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(42, 143, 216, 0.2);
}

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

.footer-section h4 {
    margin-bottom: 20px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

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

.footer-section a:hover {
    color: white;
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(42, 143, 216, 0.1);
    border: 1px solid rgba(42, 143, 216, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition);
    color: var(--primary-light);
}

.social-link:hover {
    background: var(--primary-light);
    color: white;
    border-color: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(42, 143, 216, 0.3);
}

.footer-bottom {
    border-top: 1px solid rgba(42, 143, 216, 0.2);
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-visual {
        height: 300px;
    }

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

    .stats {
        grid-template-columns: repeat(3, 1fr);
    }

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

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

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(15, 15, 30, 0.98);
        flex-direction: column;
        gap: 0;
        padding: 20px;
        display: none;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid var(--border-color);
    }
    
    body.light-mode .nav-menu {
        background: white;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-link {
        padding: 10px 0;
        display: block;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero {
        margin-top: 60px;
        padding: 40px 0;
    }

    .hero-titles {
        font-size: 2rem;
    }

    .services {
        padding: 60px 0;
    }

    .portfolio {
        padding: 60px 0;
    }

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

    .about {
        padding: 60px 0;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact {
        padding: 60px 0;
    }

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

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .btn-large {
        padding: 12px 30px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }
}

/* ========================================== 
   PRICING PAGE STYLES
   ========================================== */

/* Pricing Hero */
.pricing-hero {
    margin-top: 80px;
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(42, 143, 216, 0.03) 0%, rgba(67, 163, 129, 0.02) 100%);
    position: relative;
    overflow: hidden;
}

.pricing-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(23, 162, 184, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.pricing-header-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.pricing-header-content h1 {
    margin-bottom: 20px;
    line-height: 1.1;
}

.pricing-header-content .hero-subtitle {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 30px;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
}

.pricing-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 80px;
}

.pricing-group {
    position: relative;
}

/* Important Note */
.important-note {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: linear-gradient(135deg, rgba(42, 143, 216, 0.15) 0%, rgba(67, 163, 129, 0.1) 100%);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid var(--primary-light);
    margin-bottom: 20px;
}

.important-note i {
    font-size: 1.5rem;
    color: var(--primary-light);
    margin-top: 5px;
    flex-shrink: 0;
}

.important-note h3 {
    margin-bottom: 8px;
}

.important-note p {
    margin: 0;
    color: var(--text-light);
}

body.light-mode .important-note {
    background: linear-gradient(135deg, rgba(42, 143, 216, 0.08) 0%, rgba(67, 163, 129, 0.05) 100%);
}

/* Pricing Tables */
.pricing-table-wrapper {
    overflow-x: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(42, 143, 216, 0.1);
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
}

body.light-mode .pricing-table {
    background: white;
}

.pricing-table thead {
    background: var(--gradient);
    color: white;
}

.pricing-table thead th {
    padding: 20px;
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.pricing-table tbody tr {
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.pricing-table tbody tr:hover {
    background: rgba(42, 143, 216, 0.08);
}

body.light-mode .pricing-table tbody tr:hover {
    background: #f8f9fa;
}

.pricing-table tbody td {
    padding: 30px 20px;
    vertical-align: top;
}

.pricing-table .service-name {
    width: 20%;
}

.pricing-table .service-name h4 {
    color: var(--text-dark);
    margin-bottom: 5px;
}

.pricing-table .price {
    width: 20%;
    text-align: center;
}

.pricing-table .amount {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.pricing-table .price p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
}

.pricing-table .description {
    width: 60%;
}

.pricing-table .description ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pricing-table .description li {
    padding: 6px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-light);
    font-size: 0.95rem;
}

.pricing-table .description li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-light);
    font-weight: 700;
    font-size: 1.1rem;
}

/* Services Included */
.services-included {
    margin-top: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-item {
    background: var(--card-bg);
    padding: 35px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    backdrop-filter: blur(10px);
}

body.light-mode .feature-item {
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: none;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(42, 143, 216, 0.2);
    border-color: var(--primary-light);
    background: linear-gradient(135deg, rgba(42, 143, 216, 0.05), rgba(67, 163, 129, 0.05));
}

body.light-mode .feature-item:hover {
    box-shadow: var(--shadow-lg);
    background: white;
    border: none;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 25px rgba(42, 143, 216, 0.25);
    margin-bottom: 20px;
    transition: var(--transition);
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotateY(360deg);
    box-shadow: 0 12px 35px rgba(42, 143, 216, 0.4);
}

.feature-item h4 {
    color: var(--text-dark);
    margin-bottom: 10px;
}

.feature-item p {
    margin: 0;
    font-size: 0.95rem;
}

/* Custom Offer */
.custom-offer {
    margin-top: 80px;
    background: linear-gradient(135deg, var(--gradient) 0%, var(--gradient-secondary) 100%);
    padding: 60px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(42, 143, 216, 0.3);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.custom-offer::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.offer-content {
    position: relative;
    z-index: 1;
}

.offer-content h3 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 15px;
}

.offer-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.custom-offer .btn {
    background: white;
    color: var(--primary-light);
    font-weight: 700;
}

.custom-offer .btn:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

/* FAQ Section */
.faq-section {
    background: linear-gradient(135deg, rgba(42, 143, 216, 0.01) 0%, transparent 100%);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(42, 143, 216, 0.08);
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

body.light-mode .faq-item {
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: none;
}

.faq-item:hover {
    box-shadow: 0 15px 45px rgba(42, 143, 216, 0.15);
    border-color: var(--primary-light);
}

body.light-mode .faq-item:hover {
    box-shadow: var(--shadow-lg);
    border: none;
}

.faq-question {
    padding: 20px;
    background: linear-gradient(135deg, rgba(42, 143, 216, 0.08), rgba(67, 163, 129, 0.05));
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

body.light-mode .faq-question {
    background: linear-gradient(135deg, rgba(42, 143, 216, 0.05), rgba(67, 163, 129, 0.03));
}

.faq-item:hover .faq-question {
    background: linear-gradient(135deg, rgba(42, 143, 216, 0.15), rgba(67, 163, 129, 0.1));
}

.faq-question h4 {
    margin: 0;
    color: var(--text-dark);
    font-size: 1rem;
}

.faq-question i {
    color: var(--primary-light);
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 500px;
}

.faq-answer p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.6;
}

/* Pricing CTA */
.pricing-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(42, 143, 216, 0.02) 0%, rgba(67, 163, 129, 0.01) 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.btn-large-cta {
    padding: 18px 50px;
    font-size: 1.1rem;
    width: auto;
    display: inline-block;
}

/* Responsive Pricing */
@media (max-width: 1024px) {
    .pricing-table .service-name {
        width: 25%;
    }
    
    .pricing-table .price {
        width: 20%;
    }
    
    .pricing-table .description {
        width: 55%;
    }

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

    .custom-offer {
        padding: 40px;
    }

    .pricing-table thead th {
        padding: 15px 10px;
        font-size: 0.95rem;
    }

    .pricing-table tbody td {
        padding: 20px 10px;
    }
}

@media (max-width: 768px) {
    .pricing-hero {
        margin-top: 60px;
        padding: 50px 0;
    }

    .pricing-section {
        padding: 50px 0;
    }

    .pricing-header-content h1 {
        font-size: 2rem;
    }

    .pricing-table-wrapper {
        overflow-x: auto;
    }

    .pricing-table {
        min-width: 800px;
    }

    .pricing-table .service-name {
        width: 30%;
    }
    
    .pricing-table .price {
        width: 25%;
    }
    
    .pricing-table .description {
        width: 45%;
    }

    .pricing-table thead th {
        padding: 12px 8px;
        font-size: 0.85rem;
    }

    .pricing-table tbody td {
        padding: 15px 8px;
        font-size: 0.9rem;
    }

    .pricing-table .amount {
        font-size: 1.4rem;
    }

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

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

    .custom-offer {
        padding: 30px;
    }

    .offer-content h3 {
        font-size: 1.5rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .custom-offer {
        margin-top: 50px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.3rem;
    }

    h3 {
        font-size: 1.1rem;
    }

    p {
        font-size: 0.95rem;
    }

    .hero {
        margin-top: 50px;
    }

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

    .service-card {
        padding: 25px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .team-illustration {
        gap: 20px;
    }

    .team-member {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    .info-card {
        padding: 20px;
    }

    .contact-form {
        padding: 25px;
    }

    /* Pricing Specific Styles */
    .pricing-hero {
        padding: 40px 0;
    }

    .pricing-header-content h1 {
        font-size: 1.75rem;
    }

    .pricing-table-wrapper {
        -webkit-overflow-scrolling: touch;
    }

    .pricing-table {
        min-width: 650px;
    }

    .pricing-table thead th {
        padding: 10px 6px;
        font-size: 0.75rem;
    }

    .pricing-table tbody td {
        padding: 12px 6px;
        font-size: 0.85rem;
    }

    .pricing-table .amount {
        font-size: 1.2rem;
    }

    .pricing-table .description li {
        font-size: 0.85rem;
        padding: 4px 0;
        padding-left: 20px;
    }

    .important-note {
        padding: 20px;
        margin-bottom: 20px;
    }

    .feature-item {
        padding: 25px;
    }

    .services-included {
        margin-top: 40px;
    }

    .features-grid {
        gap: 20px;
    }

    .custom-offer {
        padding: 20px;
        margin-top: 40px;
    }

    .offer-content h3 {
        font-size: 1.3rem;
    }

    .cta-content h2 {
        font-size: 1.5rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    .faq-question {
        padding: 15px;
    }

    .faq-answer {
        padding: 15px;
    }

    .faq-item.active .faq-answer {
        padding: 15px;
    }
}
