/* Hero Section Modern Design */
.hero {
    background: linear-gradient(135deg, var(--blue-main) 0%, var(--blue-deep) 50%, var(--green-accent) 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    animation: fadeInUp 1s ease;
}

.hero h1 {
    color: var(--white);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Services Section */
.services {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--gray-light) 0%, rgba(38, 117, 198, 0.02) 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 0.6s ease;
}

.section-title {
    color: var(--black-text);
    margin-bottom: 1rem;
    font-size: 2.5rem;
    font-weight: 700;
}

.section-subtitle {
    color: var(--gray-text);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    animation: fadeInUp 0.8s ease;
}

/* Process Steps - Complete Section */
.process-complete {
    background: var(--white);
    padding: 80px 0;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Quick Contact CTA - Fixed */
.cta-section {
    background: linear-gradient(135deg, var(--blue-main) 0%, var(--green-accent) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

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

/* Footer */
.footer {
    background: var(--black-text);
    color: var(--white);
    padding: 3rem 0 1rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--blue-main), var(--green-accent), var(--red-accent));
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

/* Ultra Modern Footer Design */
.footer {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
  color: white;
  padding: 0;
  position: relative;
  overflow: hidden;
  font-family: "Nata Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(38, 117, 198, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

/* Horizontal Contact Bar */
.contact-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-bar:hover::before {
    opacity: 1;
}

.contact-bar:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow:
        0 16px 32px rgba(0, 0, 0, 0.2),
        0 8px 16px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.contact-bar-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 12px;
    position: relative;
}

.contact-bar-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.contact-bar-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.contact-bar-item:hover .contact-bar-icon {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.contact-bar-icon svg {
    width: 20px;
    height: 20px;
    color: white;
}

.contact-bar-text {
    font-family: "Nata Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-size: 0.95rem;
    color: white;
}

.contact-separator {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.3), transparent);
}

/* ========== Design Tokens ========== */
:root{
    --bg-grad-start:#132b50;
    --bg-grad-end:#254b87;
    --glass-bg:rgba(255,255,255,0.08);
    --glass-bg-strong:rgba(255,255,255,0.12);
    --glass-border:rgba(255,255,255,0.18);
    --glass-border-soft:rgba(255,255,255,0.12);
    --text-strong:#ffffff;
    --text-mid:rgba(255,255,255,0.8);
    --text-dim:rgba(255,255,255,0.65);
    --accent-1:#2675C6;
    --accent-2:#37BC9B;
    --shadow-1:0 8px 24px rgba(0,0,0,0.25);
    --shadow-2:0 2px 10px rgba(0,0,0,0.2);
    --radius-xl:20px;
    --radius-lg:16px;
    --radius-md:12px;
    --space-xxl:48px;
    --space-xl:32px;
    --space-lg:24px;
    --space-md:16px;
    --space-sm:12px;
    --space-xs:8px;
}

/* ========== Footer Shell ========== */
.glassmorphism-footer{
    position:relative;
    background:linear-gradient(135deg,var(--bg-grad-start) 0%,var(--bg-grad-end) 100%);
    padding: var(--space-xxl) 0 var(--space-xl);
    overflow:hidden;
    isolation:isolate; /* keep backdrop filters contained */
}

/* Remove unwanted gap above footer */
.glassmorphism-footer::before,
.glassmorphism-footer::after{content:"";position:absolute;inset:0;pointer-events:none}
.glassmorphism-footer::before{
    background:
            radial-gradient(1200px 600px at 15% 20%, rgba(55,188,155,0.15), transparent 60%),
            radial-gradient(1000px 500px at 85% 75%, rgba(38,117,198,0.18), transparent 60%);
    z-index:0;
}
.footer-backdrop{
    position:absolute;inset:0;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    z-index:0;
}

/* ========== Container ========== */
.glassmorphism-footer .container{
    width:min(1200px, 92%);
    margin-inline:auto;
}

/* ========== Grid ========== */
.footer-content{
    position:relative; z-index:1;
    display:grid;
    grid-template-columns: 2fr 1.2fr 1.2fr 1.6fr;
    gap: clamp(20px,2.5vw,32px);
    margin-bottom: var(--space-xl);
    align-items:start;
}

/* Breakpoints */
@media (max-width: 1024px){
    .footer-content{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px){
    .footer-content{ grid-template-columns: 1fr; }
}

/* ========== Glass Card Base ========== */

/* ========== Brand Block ========== */
.footer-brand-glass{ composes: footer-card; } /* if your build supports; otherwise keep both */
.footer-brand-glass{
    background: var(--glass-bg);
    border:1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
}
.brand-logo-glass{
    display:flex; align-items:center; gap: var(--space-md);
    margin-bottom: var(--space-lg);
}
.logo-icon-glass{
    width:48px;height:48px;border-radius:14px;
    display:grid;place-items:center;color:#fff;
    background: linear-gradient(145deg,var(--accent-1),var(--accent-2));
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.15);
}
.logo-text-glass{
    font-size: clamp(18px,2.4vw,22px);
    font-weight:700;
    color: var(--text-strong);
    letter-spacing:.2px;
}
.brand-description-glass{
    color: var(--text-mid);
    line-height:1.6;
    margin-bottom: var(--space-lg);
    font-size: 0.96rem;
}

/* Socials */
.social-links-glass{ display:flex; gap: var(--space-sm); flex-wrap:wrap; }
.social-link-glass{
    width:40px;height:40px;border-radius:12px;
    display:grid;place-items:center;
    color: var(--text-mid);
    background: rgba(255,255,255,0.12);
    border:1px solid var(--glass-border-soft);
    transition: transform .16s ease, background .16s ease, color .16s ease;
    text-decoration:none;
}
.social-link-glass:hover{ color:#fff; background: rgba(255,255,255,0.2); transform: translateY(-1px); }

/* ========== Column Sections ========== */
.footer-section-glass{
    background: var(--glass-bg);
    border:1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg) var(--space-lg);
    box-shadow: var(--shadow-2);
}
.section-title-glass{
    color: var(--text-strong);
    font-weight:700;
    font-size: 1.05rem;
    margin-bottom: var(--space-md);
    letter-spacing:.2px;
    position:relative;
}
.section-title-glass::after{
    content:"";
    position:absolute; left:0; bottom:-8px;
    width:36px; height:2px;
    background: linear-gradient(90deg,var(--accent-1),var(--accent-2));
    border-radius:1px;
}

/* Links */
.links-grid-glass{ display:flex; flex-direction:column; gap: var(--space-xs); margin-top: var(--space-lg); }
.link-glass{
    display:inline-flex; align-items:center; gap:10px;
    color: var(--text-mid);
    text-decoration:none;
    padding: 10px 12px;
    border-radius:10px;
    transition: background .15s ease, color .15s ease, transform .15s ease;
    will-change: transform;
}
.link-glass:hover{ color:#fff; background: rgba(255,255,255,0.1); transform: translateX(4px); }
.link-glass:focus-visible{
    outline:2px solid var(--accent-1);
    outline-offset:2px;
    color:#fff;
}

/* ========== Contact ========== */
.contact-items-glass{ display:flex; flex-direction:column; gap: var(--space-md); margin-top: var(--space-lg); }
.contact-item-glass{ display:flex; flex-direction:column; gap:6px; }
.contact-label-glass{ color: var(--text-dim); font-size: .82rem; letter-spacing:.4px; text-transform:uppercase; }
.contact-value-glass{
    color: var(--text-strong);
    font-weight:600;
    text-decoration:none;
    transition: color .15s ease;
    word-break: break-word;
}
.contact-value-glass:hover{ color: var(--accent-2); }

/* ========== Footer Bottom ========== */
.footer-bottom-glass{
    position:relative; z-index:1;
    border-top:1px solid var(--glass-border);
    background: rgba(255,255,255,0.06);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.footer-bottom-content-glass{
    display:flex; align-items:center; justify-content:space-between;
    padding: var(--space-lg) clamp(16px,2vw,32px);
    gap: var(--space-md);
}
@media (max-width: 720px){
    .footer-bottom-content-glass{ flex-direction:column; text-align:center; }
}
.copyright-glass{ color: var(--text-dim); font-size:.92rem; }
.footer-policies-glass{ display:flex; gap: clamp(12px,3vw,24px); flex-wrap:wrap; }
.policy-link-glass{
    color: var(--text-mid); text-decoration:none; font-size:.92rem; font-weight:600; position:relative;
    transition: color .15s ease;
}
.policy-link-glass:hover{ color:#fff; }
.policy-link-glass::after{
    content:""; position:absolute; left:0; bottom:-3px; height:2px; width:0;
    background: var(--accent-2);
    transition: width .2s ease;
}
.policy-link-glass:hover::after{ width:100%; }

/* ========== Spacing Fix With Previous Section ========== */
/* Ensures no white band above the footer due to preceding section margins */
section:last-of-type{ margin-bottom:0; }
section:last-of-type + .glassmorphism-footer,
#contact + .glassmorphism-footer{
    margin-top:0;
}

/* ========== BEAUTIFUL MODERN NAVBAR ========== */

/* Navbar Container */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(38, 117, 198, 0.1);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

/* Container */
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 40px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    position: relative;
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    z-index: 1001;
}

.logo-text {
    font-family: "Nata Sans", sans-serif;
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--blue-main), var(--blue-deep));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
    letter-spacing: -0.02em;
}

.nav-logo:hover .logo-text {
    transform: scale(1.05);
    background: linear-gradient(135deg, var(--blue-deep), var(--green-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Desktop Navigation */
.nav-menu {
    display: flex;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    align-items: center;
}

.nav-link {
    color: var(--gray-text);
    text-decoration: none;
    font-family: "Nata Sans", sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 12px 0;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.01em;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue-main), var(--green-accent));
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

.nav-link:hover {
    color: var(--blue-main);
    transform: translateY(-2px);
}

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

.nav-link.active {
    color: var(--blue-main);
    font-weight: 600;
}

.nav-link.active::before {
    width: 100%;
}

/* Desktop CTA Buttons */
.nav-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.nav-btn {
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-family: "Nata Sans", sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

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

.nav-btn:hover::before {
    opacity: 1;
}

.nav-btn-primary {
    background: linear-gradient(135deg, var(--blue-main), var(--blue-deep));
    color: white;
    box-shadow: 0 4px 15px rgba(38, 117, 198, 0.3);
}

.nav-btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(38, 117, 198, 0.4);
}

.nav-btn-secondary {
    background: linear-gradient(135deg, var(--green-accent), #2da085);
    color: white;
    box-shadow: 0 4px 15px rgba(55, 188, 155, 0.3);
}

.nav-btn-secondary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(55, 188, 155, 0.4);
}

/* Mobile Menu Button */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
    z-index: 1001;
}

.mobile-toggle:hover {
    background: rgba(38, 117, 198, 0.1);
}

.hamburger {
    width: 28px;
    height: 20px;
    position: relative;
}

.hamburger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--blue-main);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.hamburger span:nth-child(3) { bottom: 0; }

/* Mobile Menu Active State */
.mobile-toggle.active .hamburger span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.mobile-toggle.active .hamburger span:nth-child(2) {
    opacity: 0;
    transform: translateX(-100%);
}

.mobile-toggle.active .hamburger span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 2rem;
    text-align: center;
}

/* Mobile Navigation Links */
.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.mobile-link {
    color: var(--gray-text);
    text-decoration: none;
    font-family: "Nata Sans", sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    padding: 1rem 2rem;
    border-radius: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px);
}

.mobile-menu.active .mobile-link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu.active .mobile-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-link:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-link:nth-child(3) { transition-delay: 0.3s; }
.mobile-menu.active .mobile-link:nth-child(4) { transition-delay: 0.4s; }

.mobile-link:hover {
    color: var(--blue-main);
    background: rgba(38, 117, 198, 0.1);
    transform: scale(1.05);
}

/* Mobile Buttons */
.mobile-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 300px;
}

.mobile-btn {
    padding: 16px 32px;
    border-radius: 25px;
    text-decoration: none;
    font-family: "Nata Sans", sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px);
}

.mobile-menu.active .mobile-btn {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu.active .mobile-btn:nth-child(1) { transition-delay: 0.5s; }
.mobile-menu.active .mobile-btn:nth-child(2) { transition-delay: 0.6s; }

.mobile-btn-primary {
    background: linear-gradient(135deg, var(--blue-main), var(--blue-deep));
    color: white;
    box-shadow: 0 8px 25px rgba(38, 117, 198, 0.3);
}

.mobile-btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(38, 117, 198, 0.4);
}

.mobile-btn-secondary {
    background: linear-gradient(135deg, var(--green-accent), #2da085);
    color: white;
    box-shadow: 0 8px 25px rgba(55, 188, 155, 0.3);
}

.mobile-btn-secondary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(55, 188, 155, 0.4);
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .nav-menu,
    .nav-buttons {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }
}

@media (max-width: 768px) {
    .nav-container {
        height: 70px;
        padding: 0 20px;
    }

    .mobile-link {
        font-size: 1.3rem;
    }

    .mobile-btn {
        padding: 14px 28px;
        font-size: 1rem;
    }
}

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

    .mobile-link {
        font-size: 1.2rem;
        padding: 0.75rem 1.5rem;
    }

    .mobile-nav {
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
}

/* Prevent body scroll when mobile menu is open */
body.mobile-menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

/* Scroll behavior for navbar */
.navbar.nav-scroll {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

/* Responsive Contact Info */
@media (max-width: 768px) {
    .contact-bar {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }

    .contact-separator {
        width: 80%;
        height: 1px;
        background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
    }
}

@media (max-width: 480px) {
    .contact-bar {
        padding: 1rem;
        border-radius: 16px;
    }
}
