:root {
  /* Core Branding Colors */
  --primary: #84bcdd;
  --primary-dark: #2c7bac;
  --primary-light: #A3D4EE;
  --secondary: #00E5D4;
  --accent: #FFC107;
  --dark: #000000;
  --light: #FFFFFF;
  --bg-light: #f1f2f4;
  --bg-white: #ffffff;

  /* Text Colors */
  --text-dark: #212121;
  --text-main: #424242;
  --text-medium: #555555;
  --text-light: #757575;
  --text-muted: rgba(255, 255, 255, 0.7);
  --text-white: #ffffff;
  --heading-color: var(--text-white);

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #84bcdd 0%, #6BA4C5 100%);
  --gradient-secondary: linear-gradient(90deg, #212121 0%, #424242 100%);
  --gradient-hero: linear-gradient(135deg, #1a2980 0%, #26d0ce 100%);
  --gradient-cta: linear-gradient(135deg, #1a2980 0%, #26d0ce 100%);
  --gradient-blue: linear-gradient(135deg, #3949ab, #5c6bc0);

  /* Layout & Spacing */
  --container-max-width: 1400px;
  --section-padding-large: 100px 0;
  --section-padding-medium: 80px 0;
  --section-padding-small: 50px 0;

  /* UI Elements */
  --border-radius-sm: 8px;
  --border-radius-md: 12px;
  --border-radius-lg: 16px;
  --border-radius-full: 50px;
  --shadow-soft: 0 5px 15px rgba(0, 0, 0, 0.05);
  --shadow-medium: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.12);
  --shadow-text: 0 2px 4px rgba(0, 0, 0, 0.3);
  --transition: all 0.3s ease;
  --transition-slow: all 0.6s ease;
}

/* ================================
   footer.css
   Footer styles only (separated)
   ================================ */

footer {
    background: var(--dark);
    color: var(--text-white);
    padding: 56px 0 24px;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: minmax(300px, 1.25fr) minmax(260px, 1fr) minmax(260px, 1fr);
    gap: 34px;
    margin-bottom: 36px;
}

/* Logo section */
.footer-logo {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-logo .site-logo {
    width: 88px;
    height: 74px;
    object-fit: contain;
    flex-shrink: 0;
}

.footer-logo-text h3 {
    font-size: 18px;
    margin-bottom: 2px;
    color: white;
    font-weight: 800;
}

.footer-logo-text p {
    font-size: 11px;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

/* About */
.footer-about p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.6;
    max-width: 420px;
}

/* Links */
.footer-links h4,
.footer-contact h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--primary);
    font-weight: 700;
}

.footer-links ul {
    color: white;
    list-style: none;
    column-count: 2;
    column-gap: 22px;
}

.footer-links li {
    color: white;
    margin-bottom: 10px;
    break-inside: avoid;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.35;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

/* Contact */
.footer-contact p {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

/* Social icons */
.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
}

.social-icon:hover {
    background: var(--primary);
    transform: translateY(-5px);
}

/* Copyright */
.copyright {
    text-align: center;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* Responsive */
@media (max-width: 1100px) {
    .footer-content {
        grid-template-columns: repeat(2, minmax(240px, 1fr));
        gap: 28px;
    }

    .footer-about {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    footer {
        padding: 40px 0 18px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 22px;
    }

    .footer-links h4,
    .footer-contact h4 {
        font-size: 17px;
        margin-bottom: 12px;
    }

    .footer-links ul {
        column-count: 1;
    }

    .footer-links li {
        margin-bottom: 8px;
    }

    .footer-about p,
    .footer-contact p,
    .footer-links a {
        font-size: 13px;
    }

    .footer-logo .site-logo {
        width: 74px;
        height: 62px;
    }

    .footer-logo-text h3 {
        font-size: 17px;
    }
}

.address-link a{
    color: rgba(255, 255, 255, 0.9);
}