        /* =================================================================== */
        /* --- GLOBAL RESET & Base Styles --- */
        /* =================================================================== */
        :root {
            --dark-theme-color: #3c2b0b;
            --highlight-color: #c7954a; 
            --text-color: #f2e8db;
            --heading-color: #e99863;
            --form-text-color: #ffffff; 
            --submit-bg: #c99c6b; 
            --light-bg: #f8f8f8;
            --light-text-color: #333333; 
            --highlight-blue: #007bff; 
            --font-serif: 'Cormorant Garamond', serif;
            --font-sans: 'Roboto', sans-serif;
            --font-instrument: 'Instrument Serif', serif;
            --font-lusitana: 'Lusitana', serif;
        }
        
        body {
            margin: 0;
            padding: 0;
            background: linear-gradient(to bottom, #191616 0%, #191616 35%, #965E39 100%); 
            background-attachment: fixed;
            color: white;
            font-family: var(--font-instrument); 
            min-height: 100vh; 
            width: 100%;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        img { max-width: 100%; display: block; }
        *, *::before, *::after { box-sizing: border-box; }

        .gradient-text {
            background: linear-gradient(90deg, #E99863 0%, #5A5A5A 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            color: transparent;
            font-size:50px;
        }
        
        /* =================================================================== */
        /* --- HERO --- */
        /* =================================================================== */
        .hero-section {
            position: relative;
            height: 100vh; 
            display: flex;
            justify-content: center;
            align-items: center;
            overflow: hidden; 
            background-color: transparent; 
            z-index: 1; 
        }
        .image-container { position: relative; width: 100%; height: 100%; display: flex; justify-content: center; align-items: center; }
        .img-layer { position: absolute; max-width: 100%; }
        
        /* DESKTOP HERO IMAGE */
        #building { 
            z-index: 3; width: 100%; height: 100%; object-fit: cover; bottom: 0; 
            visibility: hidden; /* Initial hidden for intro animation */
        }

        /* MOBILE HERO IMAGE (Hidden by default on Desktop) */
        #building-mobile {
            display: none; 
            z-index: 3;
            width: 100%;
            height: 100%;
            object-fit: cover;
            bottom: 0;
            visibility: hidden; /* Initial hidden for intro animation */
        }

        #moon { 
            z-index: 1; width: 70vh; height: 70vh; top: 0; left: 50%; 
            opacity: 0.8; visibility: hidden; 
        }
        #birds { 
              z-index: 2; width: 20vw; top: 2vh; right: 35vw; 
            transform-origin: center center; visibility: hidden;  
        }
        
        /* =================================================================== */
        /* =================================================================== */
        /* --- SECTION 2: NAVBAR Styling (Sticky) --- */
        /* =================================================================== */
        .navbar {
            display: flex;
            justify-content: space-between; 
            align-items: center;
            padding: 0 40px;
            background-color: #1a1a1a;
            color: white;
            height: 90px;
            width: 100%;
            box-sizing: border-box; 
            position: sticky; 
            top: 0;
            z-index: 10; 
        }

        .navbar-left { display: flex; align-items: center; gap: 15px; }
        .logo-vamsiram { height: 45px; }
        .logo-niche { height: 35px; }
        
        .navbar-center { 
            list-style: none; 
            display: flex; 
            gap: 50px;
            padding: 0; 
            margin: 0; 
            align-items: center; 
        }
        .navbar-center li a {
            color: white;
            text-decoration: none;
            font-family: 'Instrument Serif', serif; 
            font-weight: 400;
            font-size: 20px;
            letter-spacing: 1px; 
            transition: color 0.3s;
        }
        .navbar-center li a:hover { color: var(--highlight-color); }
        
        .cta-button {
            padding: 10px 20px;
            background-color:rgb(212, 139, 87); 
            color: white; 
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-family: 'Lusitana', serif;
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            transition: background-color 0.3s, transform 0.1s;
        }
        
        .cta-button:hover {
            background-color: #e39b71; 
            color: rgb(19, 18, 18);
            transform: translateY(-2px);
        }
        
        .navbar-center li .cta-button {
             margin: 0; 
        }

        .navbar-right { 
            display: flex; 
            align-items: center; 
            position: relative; 
        }
        
        .hamburger-icon {
            width: 30px;
            height: 20px;
            display: flex; 
            flex-direction: column;
            justify-content: space-between;
            cursor: pointer;
            z-index: 12;
            margin-left: 20px; 
        }
        .hamburger-icon .bar {
            display: block;
            height: 2px;
            width: 100%;
            background-color: white;
            border-radius: 1px;
        }
        
        /* --- HAMBURGER DROPDOWN MENU STYLES --- */
        .dropdown-menu {
            list-style: none;
            display: flex;
            flex-direction: column;
            padding: 15px 0;
            margin: 0;
            
            position: absolute;
            top: 70px; 
            right: 0;
            width: 250px;
            background-color: #1a1a1a;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-top: none;
            border-radius: 0 0 5px 5px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
            
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
            z-index: 11;
        }

        .dropdown-menu.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-menu li {
            width: 100%;
            text-align: center;
        }

        .dropdown-menu li a, .dropdown-menu li .cta-button {
            display: block;
            padding: 10px 20px;
            color: white;
            text-decoration: none;
            font-size: 18px;
            transition: background-color 0.2s;
        }
        .dropdown-menu li a:hover {
            background-color: rgba(199, 149, 74, 0.1);
            color: var(--highlight-color);
        }

        .dropdown-menu li .cta-button {
            width: 80%;
            margin: 10px auto;
            display: block;
        }

        /* =================================================================== */
        /* --- SECTION 3: ABOUT (GIRL & PINWHEEL) --- */
        /* =================================================================== */
        .about-and-title-section {
            scroll-margin-top: 90px; 
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 60px 0; 
            color: var(--heading-color);
            background-color: transparent; 
            z-index: 5;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .border-top-wrapper { width: 90%; margin-bottom: 30px; text-align: center; position: relative; z-index: 2;}
        .decorative-border { width: 100%; height: auto; object-fit: contain; }

        .about-content-wrapper {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 90%;
            gap: 40px; 
        }

        .child-image-container {
            position: relative;
            flex: 0.8; 
            max-width: 450px;
            display: flex;
            justify-content: center;
        }

        .child-base-img {
            width: 100%;
            height: auto;
            display: block;
            filter: grayscale(100%); 
        }

        .pinwheel-img {
            position: absolute;
            top: 15%;      
            left: 7%;     
            width: 42%;   
            height: auto;
            z-index: 2;
            transform-origin: center center; 
        }

        .about-text-content {
            flex: 1.2; 
            text-align: left;
            max-width: 600px;
            padding-top: 20px; 
        }

        .about-small-title {
            font-family: var(--font-lusitana);
            font-size: 1.2rem;
            letter-spacing: 2px;
            color: #aaa;
            margin-bottom: 0;
            text-transform: uppercase;
        }

        .about-large-title {
            font-family: var(--font-instrument);
            font-size: 6rem;
            line-height: 1;
            margin: 0 0 30px 0;
            background: linear-gradient(90deg, #E99863 0%, #a86e42 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            color: transparent;
        }

        .about-para {
            font-family: var(--font-lusitana);
            font-size: 1.1rem;
            line-height: 1.8;
            color: #ddd;
        }
        
         /* =================================================================== */
        /* --- SECTION 5: Three Images --- */
        /* =================================================================== */
        .section-five-images {
            display: flex;
            justify-content: space-around; 
            align-items: flex-end; 
            width: 100%;
            max-width: 1200px; 
            margin: 50px auto; 
            padding-bottom: 50px; 
            box-sizing: border-box; 
            background-color: transparent;
            z-index: 5;
        }
        
        .section-five-images .image-wrapper {
            flex-basis: 30%; 
            max-width: 300px; 
            text-align: center;
            padding: 20px;
        }

        .section-five-images .image-wrapper img {
            max-width:125%;
            height: auto;
            display: block;
            border-radius: 30px; 
            padding-right: 30px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
        }
        /* =================================================================== */
        /* --- SECTION 4, 6 (Shared) --- */
        /* =================================================================== */
        .section-four-content {
            display: flex; flex-direction: column; align-items: center; justify-content: center;
            padding: 50px 20px; color: var(--heading-color); text-align: center;
        }
        .section-four-content h1 { font-size: 7em; margin-bottom: -10px; line-height:1; letter-spacing: 1px; font-family: var(--font-instrument); }
        .section-four-content .image-container { width: 90%; max-width: 700px; margin-top: 20px; border-radius: 13%; overflow: hidden; }
        .section-four-content .main-image { width: 100%; height: auto; border-radius: 13%; }

        .section-six-container { max-width: 900px; width: 100%; padding: 50px 20px; margin: 0 auto; text-align: center; }
        .project-heading { font-family: var(--font-instrument); font-size: 4rem; font-weight: 700; letter-spacing: 1px; margin-bottom: 80px; color: var(--heading-color); }
        .video-wrapper { margin-bottom: 80px; height: 400px; display: flex; justify-content: center; align-items: center; }
        .video-container { width: 100%; padding-bottom: 56.25%; position: relative; overflow: hidden; border-radius: 12%; }
        .video-container video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }
        .mute-toggle { position: absolute; top: 20px; right: 20px; background: rgba(0, 0, 0, 0.5); color: white; padding: 5px 10px; border-radius: 5px; cursor: pointer; z-index: 30; }

        .stats-section { display: flex; justify-content: space-between; align-items: flex-start; max-width: 800px; margin: 0 auto; border-top: 1px solid rgba(199, 149, 74, 0.2); padding-top: 30px; }
        .stat-item { flex-grow: 1; padding: 0 15px; border-right: 1px solid rgba(199, 149, 74, 0.2); }
        .stat-item:last-child { border-right: none; }
        .stat-number { font-family: var(--font-lusitana); font-size: 4rem; font-weight: 700; color: var(--heading-color); margin-bottom: 5px; }
        .stat-label { font-family: sans-serif; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; color: rgba(224, 217, 212, 0.7); }

    
        /* =================================================================== */
        /* --- SECTION 7: AMENITIES GRID STYLES --- */
        /* =================================================================== */
        
        .amenities-section-wrapper {
            background-color: transparent; 
            padding: 80px 0; 
            display: flex; 
            flex-direction: column; 
            align-items: center; 
            text-align: center;
            z-index: 5;
            scroll-margin-top: 90px;
        }

        .amenities-header { 
            padding: 40px 20px 20px; 
            max-width: 700px; 
            margin: 0 auto; 
        }
        .amenities-header .header-title { font-size: 60px; font-weight: 400; margin-bottom: 5px; letter-spacing: 0.1em; color: #F8D6A4; opacity: 0.8; text-transform: uppercase; font-family: instrumental serif; }
        .amenities-header .header-subtitle { 
            font-size: 6.8em; 
            font-weight: 700; 
            margin-top: 0; 
            margin-bottom: 25px; 
            letter-spacing: 0.05em; 
            color:var(--heading-color); 
            font-family: instrumental serif;
        }
        .amenities-header .header-text { font-size: 1.1em; line-height: 1.6; color: #ccc; font-style: italic; opacity: 0.8; padding: 0 10px; }

        /* AMENITY GRID CSS */
        .amenity-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr); /* 5 equal columns */
            gap: 0px; 
            max-width: 1200px; 
            width: 90%; 
            margin: 50px auto;
            border: 1px solid rgba(255, 255, 255, 0.1); 
        }

        .amenity-item {
            padding: 14px;
            height: 180px; 
            display: flex;
            flex-direction: column;
            justify-content: space-between; 
            align-items: center;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.1); 
            position: relative;
            box-sizing: border-box; 
            transition: background-color 0.3s ease, transform 0.3s ease;
        }

        .amenity-item:hover {
            background-color: #333333; 
            transform: translateY(-5px);
        }

        /* Icon Container (Orange Ellipse/Circle) */
        .amenity-icon-container {
            width: 80px; 
            height: 80px;
            border: 2px solid #c7954a; 
            border-radius: 50%; 
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 20px; 
            transition: border-color 0.3s ease;
        }
        .amenity-item:hover .amenity-icon-container {
            border-color: #fff;
        }

        /* Icon Placeholder (PNG Image container) */
        .icon-placeholder {
            width: 50px;
            height: 50px;
            background-size: contain; 
            background-repeat: no-repeat;
            background-position: center;
        }

        /* Amenity Name (The Heading below) */
        .amenity-name {
            font-size: 0.9em;
            font-weight: 400; 
            color: white; 
            line-height: 1.2;
            padding-top: 5px; 
            font-family: inherit;
            letter-space:1px;
        }
        
        /* ICON REPLACEMENT: ADD YOUR PNG PATHS HERE (Assuming you have these files) */
        .amenity-1 { background-image: url('icon1.png'); }
        .amenity-2 { background-image: url('icon2.png'); }
        .amenity-3 { background-image: url('icon3.png'); }
        .amenity-4 { background-image: url('icon4.png'); }
        .amenity-5 { background-image: url('icon5.png'); }
        .amenity-6 { background-image: url('icon6.png'); }
        .amenity-7, .amenity-12 { background-image: url('icon7.png'); }
        .amenity-8, .amenity-13 { background-image: url('icon8.png'); }
        .amenity-9, .amenity-14 { background-image: url('icon9.png'); }
        .amenity-10, .amenity-15 { background-image: url('icon10.png'); }
        .amenity-11 { background-image: url('icon11.png'); }

        /* =================================================================== */
        /* --- GALLERY & FLOOR PLANS --- */
        /* =================================================================== */
        .gallery-section { padding: 50px 0; }
        .main-project-heading { text-align: center; font-size: 5em; font-family: var(--font-instrument); color: var(--heading-color); }
        .image-slider-container { width: 100vw; height: 60vh; overflow: hidden; }
        .slider-wrapper { display: flex; width: 600%; height: 100%; }
        .image-slide { width: 16.666%; height: 100%; }
        .fullscreen-image { width: 100%; height: 100%; object-fit: cover; }
        
        .floor-plan-top-section { text-align: center; padding: 40px; }
        .floor-plan-top-section h1 { font-size: 60px; font-family: var(--font-instrument); color: var(--heading-color); }
        .floor-plan-container { display: flex; padding: 40px 80px; gap: 40px; color: #e6c9a2; }
        .side-boxes { width: 220px; display: flex; flex-direction: column; gap: 20px; }
        .box { border: 1px solid #6e4c3a; padding: 18px; text-align: center; cursor: pointer; }
        .box.selected { border-color: #e6c9a2; background: #281a14; }
        .box img { width: 60px; height: 60px; object-fit: contain; }
        .right-content { flex: 1; }
        .top-floor-row { display: flex; gap: 40px; padding: 30px 0; border-top: 1px solid #6e4c3a; border-bottom: 1px solid #6e4c3a; }
        .image-area { height: 500px; background: rgba(0,0,0,0.2); padding: 15px; display: flex; justify-content: center; }
        .floor-img { max-height: 100%; max-width: 100%; }

        /* =================================================================== */
        /* --- CONTACT & FOOTER --- */
        /* =================================================================== */
        .contact-form-section { background-color: transparent; color: var(--form-text-color); padding: 80px 0; text-align: center; }
        .title-main { font-family: var(--font-instrument); font-size: 3em; font-weight: 400; letter-spacing: 0.2em; margin-bottom: 5px; color: rgba(255, 255, 255, 0.9); }
        .subtitle { font-size: 1em; font-weight: 300; margin-bottom: 40px; color: rgba(255, 255, 255, 0.6); }
        .contact-form { display: flex; flex-wrap: wrap; max-width: 800px; margin: 0 auto; text-align: left; }
        .input-group { width: 50%; padding: 0 15px; margin-bottom: 30px; }
        .email-group, .submit-group { width: 50%; padding-top: 20px; }
        .label { display: block; font-size: 0.8em; font-weight: 700; color: rgba(255, 255, 255, 0.7); margin-bottom: 5px; }
        input[type="text"], input[type="tel"], input[type="email"] { width: 100%; border: none; border-bottom: 1px solid rgba(255, 255, 255, 0.3); background: transparent; color: var(--form-text-color); padding: 5px 0; font-size: 1.1em; outline: none; }
        .submit-button { background-color: var(--submit-bg); color: var(--dark-theme-color); border: none; padding: 10px 40px; font-size: 1.1em; font-weight: 700; letter-spacing: 0.1em; cursor: pointer; transition: background-color 0.3s; display: block; float: right; }
        .submit-button:hover { background-color: #d8b48f; }

        .footer-section { background-color: var(--light-bg); color: var(--light-text-color); padding: 60px 0; }
        .footer-content { display: flex; flex-direction: column; align-items: center; }
        .footer-logo-row { display: flex; justify-content: flex-start; width: 100%; max-width: 1100px; padding: 0 20px; margin-bottom: 20px; }
        .logo { width: 250px; height: auto; margin-right: 15px; }
        .footer-details-row { display: flex; justify-content: space-between; width: 100%; max-width: 1100px; padding: 0 20px; margin-bottom: 20px; }
        .contact-numbers { font-size: 2.5em; font-weight: 400; width: 50%; }
        .highlight-number { text-decoration: underline; }
        .address-details { width: 50%;
  text-align: right;
  font-family: 'Inter', sans-serif;
  text-align: right;
  font-size: 0.85rem;
  line-height: 1.8;
  text-transform: uppercase;
  color: #000;
  letter-spacing: 0.5px;
  font-weight: 600; }
        .address-title { display: block; font-weight: 700; margin-bottom: 5px; }
        .footer-utility-row { display: flex; justify-content: space-between; align-items: center; width: 100%; max-width: 1100px; padding: 0 10px; font-size: 0.8em; }
        .download-link { width: 33%; text-align: left; }
        .download-brochure { color: var(--light-text-color); text-decoration: none; font-weight: 700; display: flex; align-items: center; gap: 5px; text-transform: uppercase; }
        .design-credit { width: 40%;
  text-align: center;
  font-weight: 400;
  color: #888;
  color: #1F2736;
  font-family: 'Inter', sans-serif;
 }
        .social-icons-container { width: 33%; text-align: right; }
        .social-icons { display: inline-flex; gap: 10px; }
        .social-icon { width: 25px; height: 25px; border-radius: 50%; background-color: #333; color: var(--light-bg); display: flex; justify-content: center; align-items: center; font-size: 0.8em; text-decoration: none; transition: background-color 0.3s; }
        .social-icon:hover { background-color: var(--highlight-blue); }
        .divider { width: 100%; border: 0; border-top: 1px solid #ccc; margin: 20px 0; }

        /* =================================================================== */
        /* --- MEDIA QUERIES --- */
        /* =================================================================== */
        @media (max-width: 768px) {
            /* HERO FIXES */
            .hero-section {
                padding: 0 20px; /* Add padding on mobile */
                height:57vh;
            }
            #moon { 
                width: 50vh; 
                height: 50vh; 
            }
            
            /* Hide desktop building on mobile, show mobile building */
            #building { display: none; }
            #building-mobile { 
                display: block; /* Show the mobile image */
                width: 100%;
                height: auto;
                max-height: 60vh;
                object-fit: contain;
                bottom: 20px;
                top:20px;
            }

             /* --- SECTION 2: NAVBAR (Mobile Menu Activation/Layout) --- */
            .navbar { padding: 0 20px; height: 70px; }
            .navbar-center { display: none; } 
            .hamburger-icon { 
                display: flex; 
                margin-left: 0; 
            }
            .logo-vamsiram { height: 40px; }
            .logo-niche { height: 30px; }
            /* --- RESPONSIVE ABOUT SECTION --- */
            .about-content-wrapper { flex-direction: column; gap: 20px; width: 95%; }
            .child-image-container { width: 100%; max-width: 400px; flex: auto; }
            .about-text-content { text-align: center; max-width: 100%; flex: auto; }
            .about-large-title { font-size: 4em; }

            .section-four-content h1 { font-size: 3em; }
            .stats-section { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
            .stat-item { border-right: none; border-bottom: 1px solid rgba(199, 149, 74, 0.2); padding-bottom: 15px; }
            .stat-number { font-size: 2.5rem; }

            .amenities-header .header-main { font-size: 3em; }
            .amenity-grid { grid-template-columns: repeat(2, 1fr); width: 95%; }
            .amenity-item { border-right: 1px solid rgba(255, 255, 255, 0.2) !important; border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important; }
            .amenity-item:nth-child(2n) { border-right: none !important; }
            .amenity-item:nth-last-child(-n+1) { border-bottom: none !important; }
            .amenity-item { height: 180px; }
            .amenity-icon-circle { width: 70px; height: 70px; }
            
            .floor-plan-container { flex-direction: column; padding: 20px; }
            .side-boxes { width: 100%; flex-direction: row; overflow-x: auto; padding-top: 0; }
            .box { min-width: 80px; padding: 10px; }
            .top-floor-row { flex-direction: column; }
            .image-area { height: 300px; }

            .contact-form-section { padding: 40px 10px; }
            .title-main { font-size: 2em; }
            .input-group, .email-group, .submit-group { width: 100%; }
            .submit-button { width: 100%; text-align: center; }

            .footer-logo-row, .footer-details-row, .footer-utility-row { flex-direction: column; align-items: center; gap: 20px; text-align: center; }
            .logo { margin-right: 0; }
            .contact-numbers, .address-details, .download-link, .design-credit, .social-icons-container { width: 100%; text-align: center; }
            .footer-logo-info, .download-brochure, .social-icons { justify-content: center; }
            .download-link { order: 1; }
            .social-icons-container { order: 2; }
            .design-credit { order: 3; }
        
             /* --- SECTION 7: AMENITIES GRID MOBILE OPTIMIZATION --- */
            .amenities-header .header-subtitle { font-size: 3em; }
            .amenity-grid {
                grid-template-columns: repeat(2, 1fr); 
                width: 95%;
            }
            .amenity-item {
                height: 150px; 
            }
            .amenity-icon-container {
                width: 60px;
                height: 60px;
            }
            .icon-placeholder {
                width: 40px;
                height: 40px;
            }
            .amenity-name {
                font-size: 0.8em;
            }
        
             /* --- SECTION 5: Three Images (Stacking) --- */
            .section-five-images { 
                flex-direction: column; 
                align-items: center;
                margin: 20px auto;
            }
            .section-five-images .image-wrapper {
                max-width: 90%; 
                flex-basis: auto; 
                padding: 10px;
            }
            .section-five-images .image-wrapper img {
                max-width: 100%;
                padding-right: 0;
            }
        }
        /* Footer */
.new-site-footer {
    background-color: #ffffff;
    color: #1F2736; /* Dark text */
    padding: 60px 0 40px;
    font-family: 'Inter', sans-serif;
}
.footer-logo-section {
    margin-bottom: 30px;
}
.footer-logo-img {
    max-width: 220px; 
    height: auto;
}
.footer-divider {
    border: 0;
    border-top: 1px solid #b0b0b0; /* Gray divider */
    margin: 0 0 50px 0;
}
.footer-main-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 80px;
    flex-wrap: wrap;
    gap: 30px;
}
.footer-phones {
    font-family: 'Instrument Serif', serif;
    font-size: 2.8rem;
    color: #1F2736;
    line-height: 1.2;
}
.footer-phones a {
    color: inherit;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 8px;
}
.footer-address-block {
    text-align: right;
    font-size: 0.85rem;
    line-height: 1.8;
    text-transform: uppercase;
    color: #000;
    letter-spacing: 0.5px;
    font-weight: 600;
}
.addr-label {
    font-weight: 700;
    display: block;
}
.footer-bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: capitalize;
    flex-wrap: wrap;
    gap: 20px;
    letter-spacing: 0.5px;
    color: #000;
}
.footer-download {
    display: flex;
    align-items: center;
    gap: 15px;
}
.icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
    background-color: #000000;
    color: #ffffff;
}
.icon-circle svg {
    width: 18px;
    height: 18px;
}
.footer-social {
    display: flex;
    gap: 12px;
}
.icon-circle:hover {
    opacity: 0.8;
}

