:root {
    --bg: #000000;
    /* Background */
    --surface: #121212;
    /* Cards / sections */
    --text: #EAEAEA;
    /* Primary text */
    --muted: #A0A0A0;
    /* Secondary text */
    --accent: #3B82F6;
    /* Primary Accent */
    --accent-deep: #2563EB;
    /* Hover */
    --accent-soft: #60A5FA;
    /* Subtle */
    --success: #22C55E;
    --warning: #EAB308;
    --error: #EF4444;
    --swiss-red: #ea1d22;
    --ring: 0 0 0 3px rgba(59, 130, 246, .35);
    --radius: 16px;
    --shadow: 0 10px 30px rgba(0, 0, 0, .55);
}

body {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    color: var(--text);
    background: radial-gradient(1200px 800px at 80% -10%, rgba(59, 130, 246, .18), transparent 55%),
        radial-gradient(1000px 700px at 10% 120%, rgba(37, 99, 235, .18), transparent 55%),
        var(--bg);
    line-height: 1.5;
}

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

a:hover {
    color: var(--accent-soft);
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .25rem .6rem;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 999px;
    background: rgba(255, 255, 255, .03);
    color: var(--muted);
    font-size: .8rem;
}

/* NAVBAR OVERRIDES */
.navbar {
    background: rgba(0, 0, 0, .85) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    padding: 0.75rem 1rem;
}

@media (max-width: 768px) {
    .navbar {
        padding: 0.5rem 1rem;
    }

    .navbar-brand {
        font-size: 1rem;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-brand p {
        text-align: left;
    }
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: .8rem;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text) !important;
}

.brand-logo {
    width: auto;
    height: 40px;
}

.navbar-nav .nav-link {
    color: var(--text) !important;
    font-weight: 500;
    transition: color 0.2s ease;
}

.navbar-nav .nav-link.active {
    color: var(--accent-soft) !important;
}

.navbar-nav .nav-link:hover {
    color: var(--accent-soft) !important;
}

.flag-icon-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.flag-icon {
    width: 20px;
    height: auto;
}

.cta {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    padding: .6rem 1rem;
    background: linear-gradient(135deg, var(--accent), var(--accent-deep));
    color: white !important;
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(37, 99, 235, .35);
    transition: .2s ease;
    font-weight: 600;
    text-decoration: none;
}

.cta:hover {
    transform: translateY(-1px);
    filter: saturate(1.1);
    color: white !important;
}

/* HERO SECTION */
.hero {
    padding: 80px 0 60px;
    text-align: center;
}

.hero h1 {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    letter-spacing: -0.02em;
    margin: .8rem 0 1.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--text), var(--accent-soft));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero .subtitle {
    font-size: 1.2rem;
    color: var(--accent-soft);
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero p {
    color: var(--muted);
    font-size: 1.1rem;
}

/* BUTTONS */
.btn-custom {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    border-radius: 999px;
    padding: .9rem 1.3rem;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .04);
    color: var(--text);
    transition: .18s ease;
    font-weight: 600;
    text-decoration: none;
}

.btn-custom:hover {
    border-color: rgba(255, 255, 255, .25);
    transform: translateY(-1px);
    color: var(--text);
}

.btn-custom.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-deep));
    border-color: transparent;
    color: #fff !important;
    box-shadow: 0 8px 22px rgba(59, 130, 246, .35);
}

.btn-custom.btn-primary:hover {
    filter: saturate(1.1);
    box-shadow: 0 12px 28px rgba(59, 130, 246, .45);
    color: #fff !important;
}

/* CARDS */
.card-custom {
    background: linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .02));
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 100%;
}

.card-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .7);
}

.card-custom h3 {
    margin: 0 0 8px;
    font-size: 1.1rem;
    color: var(--text);
}

.card-custom p {
    color: var(--muted);
    margin: 0;
    line-height: 1.6;
}

.icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--accent), var(--accent-deep));
    display: inline-grid;
    place-items: center;
    box-shadow: 0 8px 20px rgba(59, 130, 246, .4);
    margin-bottom: 14px;
    font-size: 1.2rem;
}

/* SECTIONS */
.section {
    margin-top: 4rem;
}

@media (max-width: 768px) {
    .section {
        margin-top: 3rem;
    }
}

@media (max-width: 576px) {
    .section {
        margin-top: 2.5rem;
    }
}

.section h2 {
    font-size: 2.2rem;
    margin: 0 0 1rem;
    font-weight: 700;
    color: var(--text);
}

.section .intro {
    color: var(--muted);
    font-size: 1.1rem;
    margin: 0 0 2rem;
}

/* STRIP */
.strip {
    margin-top: 3rem;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .02));
}

/* PRICING */
.price {
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, .08);
    background: linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .02));
    padding: 28px;
    position: relative;
    box-shadow: var(--shadow);
    transition: transform 0.2s ease;
    height: 100%;
}

.price:hover {
    transform: translateY(-3px);
}

.price h4 {
    margin: 0 0 10px;
    font-size: 1.2rem;
    color: var(--text);
}

.price .amount {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent-soft);
}

.price .note {
    color: var(--muted);
    font-size: .95rem;
    margin-top: 8px;
}

.price .features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.price .features li {
    padding: 0.4rem 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.price .features li::before {
    content: "✓";
    color: var(--success);
    margin-right: 8px;
    font-weight: bold;
}

.badge-custom {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: .3rem .6rem;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--accent), var(--accent-deep));
    font-size: .75rem;
    font-weight: 600;
    color: white;
}

/* CONTACT SECTION */
.contact-section {
    background: linear-gradient(180deg, rgba(59, 130, 246, .08), rgba(37, 99, 235, .05));
    border-radius: var(--radius);
    padding: 3rem 2rem;
    margin-top: 4rem;
    text-align: center;
}

/* MEETING BOOKING FORM */
.meeting-booking-form {
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    padding: 2.5rem;
    box-shadow: var(--shadow);
    text-align: left;
}

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

.booking-form .form-label {
    color: var(--text);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
    font-size: 0.9rem;
}

.booking-form .form-control-custom {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    color: var(--text);
    padding: 1rem 1.2rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 100%;
}

.booking-form .form-control-custom:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: var(--ring);
    background: rgba(255, 255, 255, 0.08);
}

.booking-form .form-control-custom::placeholder {
    color: var(--muted);
}

.booking-form textarea.form-control-custom {
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
    line-height: 1.5;
}

.booking-form .text-danger {
    color: var(--error) !important;
}

/* Enhanced Submit Button */
.booking-form .btn-custom.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
    border: none;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    justify-content: center;
}

.booking-form .btn-custom.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

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

.booking-form .btn-custom.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.6);
    background: linear-gradient(135deg, var(--accent-deep) 0%, var(--accent) 100%);
}

.booking-form .btn-custom.btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.5);
}

.booking-form .btn-custom.btn-primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2);
}

/* Unified Contact Note */
.unified-contact-note {
    margin-top: 1.5rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(37, 99, 235, 0.04));
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: 12px;
    padding: 1rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.unified-contact-note::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-soft), var(--accent));
    background-size: 200% 100%;
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.unified-contact-note:hover {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.12), rgba(37, 99, 235, 0.06));
    border-color: rgba(59, 130, 246, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.1);
}

.contact-note-content {
    display: flex;
    flex-direction: column;
}

.contact-note-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--muted);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.contact-note-item:hover {
    color: var(--text);
    transform: translateX(5px);
}

.contact-note-item i {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--accent), var(--accent-deep));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.85rem;
    flex-shrink: 0;
    box-shadow: 0 3px 12px rgba(59, 130, 246, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
    }
}

.contact-note-item span {
    flex: 1;
    line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .unified-contact-note {
        padding: 0.875rem;
        margin-top: 1.25rem;
    }

    .contact-note-item {
        gap: 0.625rem;
        padding: 0.375rem 0;
    }

    .contact-note-item i {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .unified-contact-note {
        padding: 0.75rem;
    }

    .contact-note-item {
        font-size: 0.85rem;
    }

    .booking-form .btn-custom.btn-primary {
        padding: 1rem 2rem;
        font-size: 1rem;
        letter-spacing: 0.3px;
    }
}

/* Bootstrap Datepicker Customization */
.datepicker {
    background: var(--surface) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: var(--radius) !important;
    box-shadow: var(--shadow) !important;
}

.datepicker table tr td.active,
.datepicker table tr td.active:hover,
.datepicker table tr td.active.disabled,
.datepicker table tr td.active.disabled:hover {
    background: linear-gradient(135deg, var(--accent), var(--accent-deep)) !important;
    color: white !important;
}

.datepicker table tr td.today {
    background: rgba(59, 130, 246, 0.2) !important;
    color: var(--accent-soft) !important;
}

.datepicker table tr td:hover {
    background: rgba(255, 255, 255, 0.05) !important;
    color: var(--text) !important;
}

.datepicker table tr th {
    color: var(--text) !important;
    background: rgba(255, 255, 255, 0.03) !important;
}

.datepicker table tr td {
    color: var(--text) !important;
}

.datepicker table tr td.old {
    color: var(--muted) !important;
}

.datepicker table tr td.new {
    color: var(--muted) !important;
}

.datepicker-dropdown:after {
    border: none;
}

.datepicker table tr td span.focused,
.datepicker table tr td span:hover {
    background: rgba(255, 255, 255, 0.05) !important;
    color: var(--text) !important;
}

.datepicker table tr td.disabled,
.datepicker table tr td.disabled:hover {
    color: var(--muted) !important;
}

/* Responsive adjustments for meeting booking form */
@media (max-width: 768px) {
    .meeting-booking-form {
        padding: 1.5rem;
    }

    .booking-form .form-group {
        margin-bottom: 1rem;
    }

    .booking-form .form-control-custom {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .meeting-booking-form {
        padding: 1rem;
    }

    .booking-form .btn-custom {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 2rem 1.5rem;
        margin-top: 3rem;
    }
}

@media (max-width: 576px) {
    .contact-section {
        padding: 1.5rem 1rem;
        margin-top: 2.5rem;
    }
}

.contact-section h2 {
    color: var(--text);
}

/* FORM */
.form-control-custom {
    padding: 1rem 1.2rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .16);
    background: rgba(0, 0, 0, .6);
    color: var(--text);
    outline: none;
    font-size: 1rem;
    width: 100%;
}

@media (max-width: 576px) {
    .form-control-custom {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
        border-top-right-radius: var(--radius) !important;
        border-bottom-right-radius: var(--radius) !important;
    }
}

.form-control-custom:focus {
    box-shadow: var(--ring);
    border-color: var(--accent-soft);
    background: rgba(0, 0, 0, .6);
    color: var(--text);
}

.form-control-custom::placeholder {
    color: var(--muted);
}

/* FOOTER */
footer {
    margin-top: 5rem;
    padding: 3rem 0;
    color: var(--muted);
    border-top: 1px solid rgba(255, 255, 255, .06);
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .3));
}

@media (max-width: 768px) {
    footer {
        margin-top: 3rem;
        padding: 2rem 0;
    }
}

@media (max-width: 576px) {
    footer {
        margin-top: 2.5rem;
        padding: 1.5rem 0;
    }
}

.footer-links h5 {
    margin: 0 0 1rem;
    color: var(--text);
    font-size: 0.9rem;
}

.footer-links a {
    display: block;
    color: var(--muted);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    transition: color 0.2s ease;
    text-decoration: none;
}

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

.social-links a {
    color: var(--muted);
    transition: color 0.2s ease;
    text-decoration: none;
}

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

/* PORTFOLIO CARDS */
.portfolio-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .02));
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
    height: 100%;
}

.portfolio-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .7);
}

/* RESPONSIVE OVERRIDES */
@media (max-width: 768px) {
    .hero {
        padding: 60px 0 40px;
    }

    .section {
        margin-top: 3rem;
    }

    .section h2 {
        font-size: 1.8rem;
    }

    .navbar-collapse {
        background: rgba(0, 0, 0, 0.95);
        padding: 1rem;
        border-radius: 10px;
        margin-top: 1rem;
    }
}

/* Popular pricing highlight */
.price-popular {
    outline: 2px solid rgba(59, 130, 246, .5);
}

/* Animation Classes */
.animate-fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-fade-in-up.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Section - Full Screen */
.hero-fullscreen {
    position: relative;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: var(--bg);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(2px 2px at 20px 30px, var(--accent-soft), transparent),
        radial-gradient(2px 2px at 40px 70px, var(--accent), transparent),
        radial-gradient(1px 1px at 90px 40px, var(--accent-soft), transparent),
        radial-gradient(1px 1px at 130px 80px, var(--accent), transparent),
        radial-gradient(2px 2px at 160px 30px, var(--accent-soft), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: float 20s ease-in-out infinite;
    opacity: 0.3;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 800px 600px at 50% 0%, rgba(59, 130, 246, 0.15), transparent 70%),
        radial-gradient(ellipse 600px 400px at 80% 100%, rgba(37, 99, 235, 0.1), transparent 70%);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 2rem;
}

/* Scroll Indicator */
.scroll-indicator {
    text-align: center;
    color: var(--muted);
    font-size: 0.9rem;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.scroll-arrow {
    width: 3px;
    height: 40px;
    background: linear-gradient(180deg, var(--accent) 0%, transparent 100%);
    border-radius: 2px;
    position: relative;
    animation: scroll-bounce 2s infinite;
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: -4px;
    width: 11px;
    height: 11px;
    border-right: 3px solid var(--accent);
    border-bottom: 3px solid var(--accent);
    transform: rotate(45deg);
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
}

@keyframes scroll-bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

.hero-text-wrapper {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.hero-fullscreen .subtitle {
    font-size: 1.2rem;
    color: var(--accent-soft);
    font-weight: 500;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.hero-fullscreen h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text) 0%, var(--accent-soft) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

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

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text) 0%, var(--accent-soft) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header .intro {
    font-size: 1.2rem;
    color: var(--muted);
    max-width: 1000px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Service Cards */
.service-card {
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    padding: 2.5rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (max-width: 768px) {
    .service-card {
        margin-bottom: 1rem;
    }
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-soft));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-soft);
    box-shadow: var(--shadow);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent), var(--accent-deep));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.service-card h3 {
    text-align: center;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text);
}

.service-card p {
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.service-features span {
    background: rgba(59, 130, 246, 0.1);
    color: var(--accent-soft);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

/* Portfolio Cards */
.portfolio-card {
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    height: 100%;
}

@media (max-width: 768px) {
    .portfolio-card {
        margin-bottom: 1rem;
    }
}

.portfolio-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-soft);
    box-shadow: var(--shadow);
}

.portfolio-image img {
    width: 100%;
}

.portfolio-content {
    padding: 2rem;
}

.portfolio-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text);
}

.portfolio-content p {
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}



.portfolio-link {
    text-align: center;
}

/* Pricing Cards */
.pricing-card {
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    padding: 2.5rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .pricing-card {
        margin-bottom: 1rem;
    }
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-soft);
    box-shadow: var(--shadow);
}

.pricing-popular {
    border-color: var(--accent);
    position: relative;
}

.popular-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-badge {
    background: rgba(59, 130, 246, 0.1);
    color: var(--accent-soft);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.pricing-header h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text);
}

.pricing-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.pricing-note {
    color: var(--muted);
    font-size: 0.9rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.pricing-features li {
    padding: 0.5rem 0;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pricing-features i {
    color: var(--success);
    font-size: 0.9rem;
}

.pricing-action {
    text-align: center;
}

/* Contact Section */
.contact-form {
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    padding: 2.5rem;
    margin-bottom: 3rem;
}

.input-group {
    display: flex;
    margin-bottom: 1rem;
}

.form-control-custom {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    color: var(--text);
    padding: 1rem 1.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    flex: 1;
}

.form-control-custom:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: var(--ring);
    background: rgba(255, 255, 255, 0.08);
}

.form-control-custom::placeholder {
    color: var(--muted);
}

.contact-note {
    color: var(--muted);
    font-size: 0.9rem;
    margin: 0;
    text-align: center;
}

.contact-note i {
    color: var(--accent);
    margin-right: 0.5rem;
}

.contact-info {
    margin-top: 3rem;
}

.contact-item {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    height: 100%;
    text-align: left;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent), var(--accent-deep));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.contact-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.25rem;
    color: var(--text);
}

.contact-item p {
    margin: 0;
    color: var(--muted);
}

/* Button Styles */
.btn-custom {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: var(--radius);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-deep));
    color: white;
    border-color: var(--accent);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-deep), var(--accent));
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
    color: white;
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-soft);
    color: var(--accent-soft);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-content {
        padding: 0 1.5rem;
    }


}

@media (max-width: 992px) {
    .hero-fullscreen h1 {
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .hero-description {
        font-size: 1.1rem;
    }



    .service-card,
    .portfolio-card,
    .pricing-card {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .hero-text-wrapper {
        margin-bottom: 2rem;
    }

    .hero-buttons {
        margin-bottom: 2rem;
    }

    .scroll-indicator {
        margin-top: 1rem;
    }

    .input-group {
        gap: 0.5rem;
    }

    .input-group .btn-custom {
        width: 100%;
        justify-content: center;
        border-top-left-radius: var(--radius) !important;
        border-bottom-left-radius: var(--radius) !important;
    }

    .contact-item {
        text-align: center;
        flex-direction: column;
        align-items: center;
    }

    .section-header {
        margin-bottom: 3rem;
    }

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

    .section-header .intro {
        font-size: 1.1rem;
    }



    .pricing-features li {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .hero-content {
        padding: 0 1rem;
    }

    .hero-fullscreen h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        margin-bottom: 1.5rem;
    }

    .scroll-indicator {
        margin-top: 1rem;
        font-size: 0.8rem;
    }

    .scroll-arrow {
        height: 30px;
        width: 2px;
    }

    .scroll-arrow::after {
        width: 8px;
        height: 8px;
        left: -3px;
        bottom: -1px;
    }

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

    .section-header .intro {
        font-size: 1rem;
    }

    .pricing-card,
    .service-card,
    .portfolio-card {
        padding: 1.5rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .feature-card h3 {
        font-size: 1.1rem;
    }

    .feature-card p {
        font-size: 0.9rem;
    }

    .portfolio-content {
        padding: 1rem;
    }

    .service-icon,
    .portfolio-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .pricing-amount {
        font-size: 2rem;
    }

    .btn-custom {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .contact-item {
        padding: 1rem;
    }

    .contact-item i {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 0 0.75rem;
    }

    .hero-fullscreen h1 {
        font-size: 2.2rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .pill {
        font-size: 0.75rem;
        padding: 0.2rem 0.5rem;
    }

    .subtitle {
        font-size: 1rem;
    }

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

    .pricing-card,
    .service-card,
    .portfolio-card {
        padding: 1rem;
    }

    .feature-card {
        padding: 1rem;
    }

    .btn-custom {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }

    .contact-form {
        padding: 1rem;
    }

    .contact-item {
        padding: 0.75rem;
    }
}