/* Global Variables */
:root {
    --primary-color: #001f3f;
    /* Navy Blue */
    --primary-light: #003366;
    /* Lighter Navy */
    --secondary-color: #000000;
    /* Black */
    --accent-color: #004080;
    /* Brighter Blue for accents */
    --background-color: #ffffff;
    --surface-color: #f4f6f8;
    /* Light gray/blue tint */
    --text-color: #333333;
    --text-light: #666666;
    --white: #ffffff;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Space Grotesk', sans-serif;

    --transition: all 0.3s ease;
    --shadow-soft: 0 10px 30px -10px rgba(0, 31, 63, 0.1);
    --shadow-hover: 0 20px 40px -10px rgba(0, 31, 63, 0.2);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--secondary-color);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-filled {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    border: none;
    box-shadow: 0 4px 15px rgba(98, 0, 234, 0.3);
}

.btn-filled:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(98, 0, 234, 0.4);
}

.btn-outline {
    background: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
    margin-left: 1rem;
    transition: var(--transition);
}

.btn-outline:hover {
    background: #FFD700;
    color: var(--secondary-color);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.highlight {
    color: #FFD700;
    /* Digital Yellow */
    position: relative;
    z-index: 1;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 10px;
    background: rgba(255, 215, 0, 0.2);
    z-index: -1;
    border-radius: 4px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.03);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    font-family: var(--font-heading);
}

.logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.logo span {
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--secondary-color);
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link.btn-primary {
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
}

.nav-link.btn-primary:hover {
    background: var(--primary-color);
    color: var(--white);
}

.menu-toggle {
    display: none;
    cursor: pointer;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--white);
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    display: block;
    padding: 0.8rem 1.5rem;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
    white-space: nowrap;
}

.dropdown-item:hover {
    background: var(--surface-color);
    color: var(--primary-color);
    padding-left: 2rem;
}

/* Mobile Dropdown Adjustments */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        box-shadow: none;
        transform: none;
        opacity: 1;
        visibility: visible;
        background: transparent;
        padding: 0;
        display: none;
        /* Hide initially on mobile to save space */
    }

    .dropdown.active .dropdown-menu,
    .dropdown:hover .dropdown-menu {
        display: block;
        animation: fadeIn 0.3s ease;
    }

    .dropdown-item {
        text-align: center;
        padding: 0.5rem;
    }

    .dropdown-item:hover {
        background: transparent;
        padding-left: 0.5rem;
    }
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding-top: 120px;
    padding-bottom: 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 31, 63, 0.8)), url('hero-image.jpg') no-repeat center center/cover;
    background-attachment: fixed;
    /* Parallax effect on background */
    text-align: center;
}

.hero-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-content,
.hero-visual {
    will-change: transform;
    /* Optimize for parallax */
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: var(--white);
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-visual {
    display: none;
    /* Hide visual column as we are using bg image */
}

.hero-img {
    width: 90%;
    max-width: 500px;
    height: auto;
    object-fit: cover;
    border-radius: 30px;
    /* Soften the corners for a premium look */
    position: relative;
    z-index: 1;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    /* Stronger shadow for depth */
    animation: float 8s infinite ease-in-out;
}


.blob {
    position: absolute;
    filter: blur(50px);
    z-index: -1;
    opacity: 0.7;
    animation: float 10s infinite ease-in-out;
}

.blob-1 {
    width: 300px;
    height: 300px;
    background: var(--primary-light);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    top: 0;
    right: 0;
}

.blob-2 {
    width: 200px;
    height: 200px;
    background: var(--accent-color);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    bottom: 0;
    left: 0;
    animation-delay: -5s;
}

.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    padding: 1.5rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    gap: 1rem;
    position: absolute;
    z-index: 2;
    animation: floatCard 6s infinite ease-in-out;
}

.glass-card ion-icon {
    font-size: 2rem;
    color: var(--primary-color);
    background: rgba(0, 31, 63, 0.05);
    padding: 0.5rem;
    border-radius: 12px;
}

.glass-card p {
    font-weight: 600;
    color: var(--secondary-color);
}

.card-2 {
    top: 60%;
    right: 10%;
    animation-delay: -3s;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: var(--white);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image .image-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    /* Square aspect ratio */
    background: var(--surface-color);
    border-radius: 30px;
    overflow: hidden;
}

.placeholder-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--surface-color), #eaeaea);
    background-image: url('https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&q=80&w=800');
    background-size: cover;
    background-position: center;
}

.section-desc {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.stats {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.stat-item h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.2rem;
}

.service-link {
    display: block;
    height: 100%;
}


.stat-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: var(--surface-color);
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-link:nth-child(1) .service-card {
    transition-delay: 0.1s;
}

.service-link:nth-child(2) .service-card {
    transition-delay: 0.2s;
}

.service-link:nth-child(3) .service-card {
    transition-delay: 0.3s;
}

.service-link:nth-child(4) .service-card {
    transition-delay: 0.4s;
}

.service-card {
    background: var(--white);
    padding: 3.5rem 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 31, 63, 0.12);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), transparent);
    z-index: -1;
    transform: translateY(100%);
    transition: transform 0.6s ease;
}

.service-card:hover::before {
    transform: translateY(0);
}

.service-card span.service-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.service-card:hover span.service-border {
    transform: scaleX(1);
}

.icon-box {
    margin-bottom: 2rem;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.icon-box ion-icon {
    font-size: 3rem;
    color: var(--primary-color);
}

.service-card:hover .icon-box {
    transform: scale(1.2) rotate(10deg);
}

.service-card h3 {
    margin-bottom: 1.2rem;
    font-size: 1.4rem;
    color: var(--secondary-color);
}

.service-card p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}

.service-card::after {
    content: '→';
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    font-size: 1.5rem;
    color: var(--primary-color);
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.5s ease;
}

.service-card:hover::after {
    opacity: 1;
    transform: translateX(0);
}

/* Portfolio Section */
.portfolio {
    padding: 6rem 0;
    background: var(--white);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.portfolio-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.portfolio-col-title {
    font-size: 1.1rem;
    color: var(--secondary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
    margin-bottom: 0.5rem;
}

.portfolio-item {
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    background-color: var(--surface-color);
    cursor: pointer;
    transition: var(--transition);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-item:hover img {
    transform: scale(1.1);
}



.portfolio-overlay {
    position: absolute;
    bottom: -100px;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--white);
    transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay {
    bottom: 0;
}

.portfolio-overlay h3 {
    color: var(--white);
    font-size: 1.25rem;
}

.portfolio-overlay p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: linear-gradient(135deg, #000000 0%, #001f3f 100%);
    color: var(--white);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.contact h2 {
    color: var(--white);
}

.contact p {
    color: #cccccc;
}

.info-item {
    display: flex;
    align-items: center;
    margin-top: 1.5rem;
    gap: 1rem;
}

.info-item ion-icon {
    font-size: 1.5rem;
    color: var(--primary-light);
}

.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--secondary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
    background: #f9f9fd;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--white);
}

.btn-submit {
    width: 100%;
    margin-top: 1rem;
}

/* Footer */
.footer {
    background: var(--white);
    padding: 4rem 0 0 0;
    border-top: 1px solid #f0f0f0;
}

.footer-container {
    padding-bottom: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--secondary-color);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: var(--transition);
}

.social-links a:hover {
    transform: translateY(-3px);
}

.footer-bottom {
    background: var(--surface-color);
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

@keyframes floatCard {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Responsive */
@media (max-width: 992px) {

    .hero-container,
    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-subtitle {
        margin: 0 auto 2rem auto;
        font-size: 1rem;
    }

    .hero-visual {
        display: none;
    }

    .about-text {
        order: -1;
    }

    .stats {
        justify-content: center;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .logo-img {
        height: 50px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .navbar .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
    }

    .navbar .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 1rem 0;
    }

    .menu-toggle {
        display: block;
    }

    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

/* Popup Banner */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.4s ease;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.popup-content {
    background: var(--white);
    width: 90%;
    max-width: 800px;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    display: flex;
    overflow: hidden;
    position: relative;
    transform: translateY(30px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.popup-overlay.active .popup-content {
    transform: translateY(0) scale(1);
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--secondary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 10;
    transition: var(--transition);
}

.popup-close:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: rotate(90deg);
}

.popup-left {
    width: 45%;
    position: relative;
}

.popup-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popup-right {
    width: 55%;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.popup-right h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.popup-right p {
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.popup-timer {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .popup-content {
        flex-direction: column;
        max-width: 400px;
    }

    .popup-left {
        width: 100%;
        height: 150px;
    }

    .popup-right {
        width: 100%;
        padding: 2rem;
        text-align: center;
    }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.whatsapp-float img {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

.whatsapp-label {
    position: absolute;
    right: 70px;
    background: var(--white);
    color: var(--secondary-color);
    padding: 8px 15px;
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    pointer-events: none;
}

.whatsapp-float:hover .whatsapp-label {
    opacity: 1;
    visibility: visible;
    right: 80px;
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .whatsapp-float img {
        width: 30px;
        height: 30px;
    }
}

/* Pricing Section */
.pricing {
    padding: 6rem 0;
    background: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.pricing-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 30px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.pricing-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-hover);
}

.pricing-card.featured {
    border: 2px solid #FFD700;
    transform: scale(1.05);
    z-index: 2;
}

.pricing-card.featured:hover {
    transform: translateY(-15px) scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #FFD700;
    color: var(--secondary-color);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.pricing-header .price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.pricing-header p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
    text-align: left;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: var(--text-color);
}

.pricing-features li ion-icon {
    color: #25d366;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.pricing-card .btn {
    width: 100%;
}

@media (max-width: 992px) {
    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-15px) scale(1);
    }
}

/* Tech Stack Section */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.tech-category {
    background: var(--surface-color);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition);
}

.tech-category:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft);
}

.tech-category h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
}

.tech-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tech-item ion-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    background: rgba(255, 215, 0, 0.1);
    padding: 0.4rem;
    border-radius: 8px;
}

.tech-item span {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-color);
}

@media (max-width: 480px) {
    .tech-items {
        grid-template-columns: 1fr;
    }
}

/* Newsletter Section */
.newsletter {
    padding: 6rem 0;
    background: var(--secondary-color);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: var(--primary-color);
    filter: blur(150px);
    opacity: 0.15;
    border-radius: 50%;
}

.newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
}

.newsletter-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.newsletter-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    max-width: 500px;
}

.newsletter-form {
    flex-grow: 1;
    max-width: 500px;
}

.newsletter-form .input-group {
    display: flex;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-form input {
    flex-grow: 1;
    background: transparent;
    border: none;
    padding: 0 20px;
    color: var(--white);
    font-family: inherit;
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: none;
}

.newsletter-form .btn {
    padding: 12px 30px;
    border-radius: 50px;
    white-space: nowrap;
}

@media (max-width: 992px) {
    .newsletter-content {
        flex-direction: column;
        text-align: center;
        gap: 2.5rem;
    }

    .newsletter-text p {
        margin: 0 auto;
    }

    .newsletter-form {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .newsletter-form .input-group {
        flex-direction: column;
        background: transparent;
        border: none;
        padding: 0;
        gap: 15px;
    }

    .newsletter-form input {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        padding: 15px 25px;
        border-radius: 50px;
        width: 100%;
    }

    .newsletter-form .btn {
        width: 100%;
    }
}

/* Floating Share Button */
.share-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: var(--transition);
}

.share-float:hover {
    transform: scale(1.1);
    background: var(--white);
}

.share-menu {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    width: 200px;
}

.share-float:hover .share-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.share-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 15px;
    border-radius: 10px;
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.share-item:hover {
    background: var(--surface-color);
    color: var(--primary-color);
}

.share-item ion-icon {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .share-float {
        bottom: 90px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .share-menu {
        right: 0;
        bottom: 60px;
    }
}