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

:root {
    --primary: #000000;
    --accent: #e74c3c;
    --accent-light: #ff6b7a;
    --secondary: #1a1a1a;
    --text: #ffffff;
    --text-dark: #cccccc;
    --bg: #0a0a0a;
    --card-bg: #1a1a1a;
}

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

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Animated Background */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.3;
}

.bg-animation::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 20% 50%, rgba(231, 76, 60, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 107, 122, 0.15) 0%, transparent 50%);
    animation: drift 20s ease-in-out infinite;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(231, 76, 60, 0.1);
    animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-container a {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.logo-container a:hover {
    transform: scale(1.05);
}

.logo-image {
    height: 65px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(231, 76, 60, 0.3));
    transition: all 0.3s ease;
}

.logo-image:hover {
    filter: drop-shadow(0 4px 12px rgba(231, 76, 60, 0.5));
}

.footer-logo-image {
    height: 80px;
    width: auto;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 2px 6px rgba(231, 76, 60, 0.2));
}

.logo {
    text-align: left;
}

.logo-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 3px;
    line-height: 1;
}

.logo-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 2px;
    color: var(--accent);
    font-weight: 600;
    margin-top: 0.2rem;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.3s ease;
}

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

.nav-links a:hover,
.nav-links a.active {
    color: var(--text);
}

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

.cta-button {
    padding: 0.8rem 2rem;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-size: 0.95rem;
}

.cta-button:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.3);
}

.btn-secondary {
    padding: 0.8rem 2rem;
    background: transparent;
    color: var(--text);
    border: 2px solid var(--accent);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-size: 0.95rem;
}

.btn-secondary:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 5% 4rem;
    position: relative;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.hero-text h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-text h1 .highlight {
    color: var(--accent);
    position: relative;
    display: inline-block;
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-image {
    position: relative;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.hero-image-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.3) 0%, transparent 50%);
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.floating-card {
    position: absolute;
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(231, 76, 60, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: float 3s ease-in-out infinite;
}

.floating-card.card-1 {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.floating-card.card-2 {
    bottom: 10%;
    left: -10%;
    animation-delay: 1.5s;
}

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stats Section */
.stats {
    padding: 4rem 5%;
    background: var(--secondary);
    border-top: 1px solid rgba(231, 76, 60, 0.2);
    border-bottom: 1px solid rgba(231, 76, 60, 0.2);
}

.stats-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

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

.stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.stat-label {
    color: var(--text-dark);
    font-size: 1rem;
}

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

.section-tag {
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.section-header p {
    color: var(--text-dark);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Services Section */
.services-preview {
    padding: 8rem 0;
}

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

/* Add-ons Grid - specific for hosting add-ons */
.addons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--card-bg);
    padding: 0;
    border-radius: 20px;
    border: 1px solid rgba(231, 76, 60, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(231, 76, 60, 0.2);
}

.service-card:hover::before {
    opacity: 1;
}

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover .service-image {
    transform: scale(1.05);
}

.service-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    margin: 1.5rem 1.5rem 1rem;
    position: relative;
    z-index: 2;
    letter-spacing: 1px;
    line-height: 1.3;
}

.service-card p {
    color: var(--text-dark);
    line-height: 1.7;
    margin: 0 1.5rem 1.5rem;
    position: relative;
    z-index: 2;
    font-size: 0.95rem;
}

.service-link {
    display: inline-block;
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    margin: 0 1.5rem 1.5rem;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: var(--accent-light);
}

/* Why Choose Us */
.why-choose {
    padding: 8rem 0;
    background: var(--secondary);
}

.why-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.why-text h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.why-text > p {
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.why-list {
    list-style: none;
    margin: 2rem 0;
}

.why-list li {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(231, 76, 60, 0.1);
    align-items: start;
}

.check-icon {
    color: var(--accent);
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(231, 76, 60, 0.1);
    border-radius: 50%;
}

.why-list strong {
    display: block;
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.why-list p {
    color: var(--text-dark);
    font-size: 0.95rem;
}

.why-main-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    margin-bottom: 2rem;
}

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

.why-image-item {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(231, 76, 60, 0.2);
    text-align: center;
}

.why-image-item h4 {
    color: var(--accent);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.why-image-item p {
    color: var(--text-dark);
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
}

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

.cta-content h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.cta-section .cta-button {
    background: white;
    color: var(--accent);
}

.cta-section .cta-button:hover {
    background: var(--bg);
    color: white;
}

.cta-section .btn-secondary {
    border-color: white;
    color: white;
}

.cta-section .btn-secondary:hover {
    background: white;
    color: var(--accent);
}

/* Footer */
footer {
    background: var(--primary);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(231, 76, 60, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

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

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-section p {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--card-bg);
    border-radius: 50%;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

.contact-info li {
    display: flex;
    align-items: start;
    gap: 0.5rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(231, 76, 60, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: var(--text-dark);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-grid-four {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.pricing-card {
    background: var(--card-bg);
    border-radius: 20px;
    border: 2px solid rgba(231, 76, 60, 0.1);
    padding: 2.5rem 2rem;
    position: relative;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(231, 76, 60, 0.3);
}

.pricing-card.popular {
    border-color: var(--accent);
    border-width: 3px;
}

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

.plan-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(231, 76, 60, 0.2);
}

.plan-header h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.price-wrapper {
    margin: 1rem 0;
}

.original-price {
    text-decoration: line-through;
    color: var(--text-dark);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin: 1.5rem 0;
}

.amount-free {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    color: #4CAF50;
    font-weight: 900;
    letter-spacing: 2px;
}

.currency {
    font-size: 1.5rem;
    color: var(--accent);
    margin-top: 0.5rem;
}

.amount {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    color: var(--accent);
    font-weight: 900;
    line-height: 1;
    margin: 0 0.25rem;
}

.cents {
    font-size: 2rem;
    color: var(--accent);
    margin-top: 0.5rem;
}

.period {
    font-size: 1rem;
    color: var(--text-dark);
    align-self: flex-end;
    margin-bottom: 1rem;
}

.plan-description {
    color: var(--text-dark);
    font-size: 0.9rem;
    min-height: 40px;
}

.plan-features {
    list-style: none;
    margin: 2rem 0;
    flex-grow: 1;
}

.plan-features li {
    padding: 0.7rem 0;
    color: var(--text-dark);
    display: flex;
    align-items: start;
    gap: 0.8rem;
    font-size: 0.9rem;
    line-height: 1.4;
}

.plan-features .check {
    color: #4CAF50;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.plan-features .cross {
    color: #999;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.plan-button {
    display: block;
    width: 100%;
    padding: 1rem;
    background: var(--accent);
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-top: auto;
}

.plan-button:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(231, 76, 60, 0.3);
}

.plan-note {
    text-align: center;
    margin-top: 1rem;
    color: var(--text-dark);
    font-size: 0.8rem;
    font-style: italic;
}

/* FAQ Section */
.faq-item {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(231, 76, 60, 0.1);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--accent);
}

.faq-item h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.faq-item p {
    color: var(--text-dark);
    line-height: 1.8;
}

/* Company Story */
.company-story {
    padding: 6rem 0;
}

.company-story .why-text h2 {
    margin-bottom: 2rem;
}

.company-story .why-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Page Header */
.page-header {
    padding: 10rem 0 6rem;
    text-align: center;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--bg) 100%);
}

.page-header h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4.5rem;
    margin-bottom: 1rem;
    letter-spacing: 3px;
}

.page-header p {
    font-size: 1.3rem;
    color: var(--text-dark);
}

/* Services Detail Page */
.services-detail {
    padding: 6rem 0;
}

.services-grid-full {
    display: grid;
    gap: 4rem;
}

.service-card-full {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(231, 76, 60, 0.1);
    transition: all 0.4s ease;
}

.service-card-full:hover {
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(231, 76, 60, 0.2);
}

.service-card-full .service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

.service-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-content h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.service-content > p {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.8rem 0;
    color: var(--text-dark);
    border-bottom: 1px solid rgba(231, 76, 60, 0.1);
    position: relative;
    padding-left: 2rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

/* About Page Styles */
.team-section {
    padding: 6rem 0;
}

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

.team-member {
    text-align: center;
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(231, 76, 60, 0.1);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 3px solid var(--accent);
}

.team-member h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.team-member .role {
    color: var(--accent);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.team-member p {
    color: var(--text-dark);
    font-size: 0.9rem;
}

/* Portfolio Page Styles */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.portfolio-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.portfolio-item:hover {
    transform: scale(1.05);
}

.portfolio-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.portfolio-overlay h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.portfolio-overlay p {
    color: var(--text-dark);
}

/* Contact Page Styles */
.contact-section {
    padding: 6rem 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: start;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 15px;
    border: 1px solid rgba(231, 76, 60, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: var(--accent);
    transform: translateX(10px);
}

.contact-icon {
    font-size: 2rem;
}

.contact-item h4 {
    margin-bottom: 0.5rem;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
}

.contact-item p {
    color: var(--text-dark);
}

/* Form Styles */
.contact-form {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(231, 76, 60, 0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    background: var(--bg);
    border: 1px solid rgba(231, 76, 60, 0.2);
    border-radius: 10px;
    color: var(--text);
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-submit {
    width: 100%;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 1001;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    color: var(--accent);
}

/* Mobile Menu Active State */
@media (max-width: 768px) {
    .nav-links.mobile-active {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 2px solid var(--accent);
        animation: slideIn 0.3s ease-out;
        z-index: 1000;
    }
    
    @keyframes slideIn {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .nav-links.mobile-active a {
        font-size: 1.2rem;
        padding: 0.8rem 0;
        border-bottom: 1px solid rgba(231, 76, 60, 0.2);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content,
    .why-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

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

    .pricing-card.popular {
        transform: scale(1);
    }

    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }

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

    .hero-text h1 {
        font-size: 3.5rem;
    }

    .section-header h2 {
        font-size: 3rem;
    }

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

    .logo-image {
        height: 55px;
    }

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .logo-image {
        height: 50px;
    }

    .hero {
        padding: 6rem 5% 3rem;
    }

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

    .hero-text p {
        font-size: 1rem;
    }

    /* Fix all grids on mobile */
    .services-grid,
    .addons-grid,
    .pricing-grid,
    .pricing-grid-four {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* IMPORTANT: Fix service cards on mobile - image on top, text below */
    .service-card {
        margin-bottom: 1rem;
        display: flex;
        flex-direction: column;
    }

    .service-image {
        height: 200px;
        width: 100%;
        object-fit: cover;
        order: 1; /* Image first */
    }

    .service-card h3 {
        font-size: 1.5rem;
        margin: 1.2rem 1.2rem 0.8rem;
        order: 2; /* Title second */
    }

    .service-card p {
        margin: 0 1.2rem 1.2rem;
        font-size: 0.9rem;
        order: 3; /* Description third */
    }

    .service-link {
        margin: 0 1.2rem 1.5rem;
        order: 4; /* Link last */
    }

    /* Fix contact page on mobile */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-item {
        padding: 1.2rem;
    }

    .contact-icon {
        font-size: 1.5rem;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }

    .amount,
    .amount-free {
        font-size: 3rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }

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

    .floating-card {
        display: none;
    }

    .why-image-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

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

    /* Make team section scrollable on mobile */
    .team-section .container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .team-grid {
        display: flex;
        gap: 1.5rem;
        grid-template-columns: none;
        width: max-content;
        padding-bottom: 1rem;
    }

    .team-member {
        min-width: 250px;
        flex-shrink: 0;
    }

    /* Fix pricing card sizing on mobile */
    .pricing-card {
        padding: 2rem 1.5rem;
    }

    .plan-features li {
        font-size: 0.85rem;
    }
}

/* Contact Page Mobile Fixes */
@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .contact-info-section {
        margin-bottom: 2rem;
    }
    
    .contact-item {
        padding: 1.2rem !important;
    }
    
    .contact-item h4 {
        font-size: 1.1rem !important;
    }
    
    .contact-form {
        padding: 2rem 1.5rem !important;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 16px !important; /* Prevents zoom on mobile */
    }
}
