/* ==============================================
   ARYAN ENTERPRISES - CUSTOM STYLE.CSS
   Navy Blue Theme | Fully Responsive
   ============================================== */

/* ==========================
   ROOT VARIABLES
========================== */
:root {
    --navy-dark: #0a1e3f;
    --navy-primary: #1a3a6e;
    --navy-light: #2c5aa0;
    --navy-accent: #4a7fc1;
    --gold-accent: #d4a445;
    --text-dark: #1a2a44;
    --text-muted: #6c7a8e;
    --bg-light: #f4f7fb;
    --white: #ffffff;
    --border-light: #e1e8f0;
    --shadow-sm: 0 4px 12px rgba(10, 30, 63, 0.08);
    --shadow-md: 0 10px 30px rgba(10, 30, 63, 0.12);
    --shadow-lg: 0 20px 50px rgba(10, 30, 63, 0.18);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

.container,
.container-fluid {
  overflow: hidden;
}

img,
video {
  max-width: 100%;
  height: auto;
}

/* ==========================
   GLOBAL STYLES
========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--navy-dark);
    line-height: 1.3;
}

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

img {
    max-width: 100%;
    height: auto;
}

::selection {
    background-color: var(--navy-primary);
    color: var(--white);
}

/* ==========================
   SECTION PADDING
========================== */
.section-padding {
    padding: 90px 0;
}

.section-heading {
    margin-bottom: 50px;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(26, 58, 110, 0.1), rgba(74, 127, 193, 0.1));
    color: var(--navy-primary);
    padding: 7px 22px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 15px;
    border: 1px solid rgba(26, 58, 110, 0.15);
}

.section-tag.light {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.25);
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 18px;
    color: var(--navy-dark);
}

.section-title.light {
    color: var(--white);
}

.section-title span {
    color: var(--navy-light);
    position: relative;
}

.section-title.light span {
    color: var(--gold-accent);
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto;
}

.section-subtitle.light {
    color: rgba(255, 255, 255, 0.85);
}

/* ==========================
   BUTTONS
========================== */
.btn-primary-custom {
    background: linear-gradient(135deg, var(--navy-primary), var(--navy-light));
    color: var(--white);
    padding: 13px 35px;
    font-weight: 600;
    font-size: 15px;
    border-radius: 50px;
    border: 2px solid transparent;
    box-shadow: 0 6px 20px rgba(26, 58, 110, 0.3);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary-custom:hover {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy-primary));
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(26, 58, 110, 0.4);
}

.btn-outline-custom {
    background: transparent;
    color: var(--white);
    padding: 13px 35px;
    font-weight: 600;
    font-size: 15px;
    border-radius: 50px;
    border: 2px solid var(--white);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline-custom:hover {
    background: var(--white);
    color: var(--navy-primary);
    transform: translateY(-3px);
}

.btn-quote {
    background: linear-gradient(135deg, var(--gold-accent), #c89535);
    color: var(--white) !important;
    padding: 10px 25px !important;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(212, 164, 69, 0.3);
    transition: var(--transition);
}

.btn-quote:hover {
    background: linear-gradient(135deg, #c89535, var(--gold-accent));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 164, 69, 0.4);
}

/* ==========================
   TOP BAR
========================== */
.top-bar {
    background: var(--navy-dark);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
}

.top-bar-info span {
    margin-right: 25px;
    display: inline-block;
}

.top-bar-info i {
    color: var(--gold-accent);
    margin-right: 6px;
}

.top-bar-info a {
    color: var(--white);
}

.top-bar-info a:hover {
    color: var(--gold-accent);
}

.top-bar-social a {
    color: var(--white);
    margin-left: 12px;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.top-bar-social a:hover {
    background: var(--gold-accent);
    color: var(--white);
    transform: translateY(-2px);
}

/* ==========================
   HEADER / NAVBAR
========================== */
.main-header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 999;
    transition: var(--transition);
}

.main-header.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
}

.brand-logo {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--navy-primary), var(--navy-light));
    color: var(--white);
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(26, 58, 110, 0.3);
}

.brand-text {
    font-size: 22px;
    font-weight: 700;
    color: var(--navy-dark);
    line-height: 1;
}

.brand-text span {
    color: var(--navy-light);
    font-weight: 500;
}

.navbar-nav .nav-link {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    padding: 8px 18px !important;
    position: relative;
    transition: var(--transition);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--navy-primary);
    transform: translateX(-50%);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--navy-primary);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 20px;
}

.navbar-toggler {
    border: 2px solid var(--navy-primary);
    padding: 6px 10px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* ==========================
   HERO CAROUSEL
========================== */
.hero-section {
    position: relative;
}

.carousel-item {
    height: 90vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.carousel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.938) 0%, rgba(0, 0, 0, 0.151) 100%);
}

.carousel-caption-custom {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    color: var(--white);
    z-index: 2;
    text-align: left;
    max-width: 700px;
    padding: 0 15px;
}

.hero-tag {
    display: inline-block;
    background: rgba(212, 164, 69, 0.2);
    color: var(--gold-accent);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    border: 1px solid rgba(212, 164, 69, 0.3);
}

.carousel-caption-custom h1 {
    font-size: 64px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.carousel-caption-custom h1 span {
    color: var(--gold-accent);
}

.carousel-caption-custom p {
    font-size: 17px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    opacity: 0.7;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

.carousel-indicators {
    margin-bottom: 30px;
}

.carousel-indicators button {
    width: 40px !important;
    height: 4px !important;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.5) !important;
    border: none !important;
    margin: 0 5px !important;
    transition: var(--transition);
}

.carousel-indicators button.active {
    background: var(--gold-accent) !important;
    width: 60px !important;
}

/* ==========================
   ABOUT SECTION
========================== */
.about-section {
    background: var(--bg-light);
    position: relative;
}

.about-image-wrapper {
    position: relative;
    padding: 0 0 60px 60px;
}

.about-img-main {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.about-img-sub {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    border-radius: 20px;
    border: 8px solid var(--white);
    box-shadow: var(--shadow-md);
}

.about-experience {
    position: absolute;
    top: 30px;
    right: -20px;
    background: linear-gradient(135deg, var(--navy-primary), var(--navy-light));
    color: var(--white);
    padding: 20px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.about-experience h3 {
    font-size: 42px;
    color: var(--gold-accent);
    margin-bottom: 5px;
    font-weight: 800;
}

.about-experience p {
    font-size: 13px;
    margin: 0;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.about-lead {
    font-size: 17px;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 20px;
}

.about-text {
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.8;
}

.about-features {
    margin-top: 25px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.about-feature:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.about-feature i {
    color: var(--navy-light);
    font-size: 22px;
}

.about-feature span {
    font-weight: 500;
    font-size: 14px;
    color: var(--text-dark);
}

/* ==========================
   SERVICES SECTION
========================== */
.services-section {
    background: var(--white);
}

.service-card {
    background: var(--white);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-light);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-img {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-img img {
    transform: scale(1.1);
}

.service-icon {
    position: absolute;
    bottom: 10px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--navy-primary), var(--navy-light));
    color: var(--white);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: rotate(-10deg) scale(1.1);
    background: linear-gradient(135deg, var(--gold-accent), #c89535);
}

.service-body {
    padding: 35px 25px 25px;
}

.service-body h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--navy-dark);
    font-weight: 700;
}

.service-body p {
    color: var(--text-muted);
    margin-bottom: 18px;
    font-size: 15px;
    line-height: 1.7;
}

.service-link {
    color: var(--navy-primary);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--gold-accent);
    gap: 12px;
}

/* ==========================
   WHY CHOOSE US
========================== */
.why-choose-section {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-primary) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 164, 69, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.why-choose-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(74, 127, 193, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.why-list {
    margin-top: 30px;
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.why-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(8px);
    border-color: rgba(212, 164, 69, 0.3);
}

.why-icon {
    flex-shrink: 0;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--gold-accent), #c89535);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(212, 164, 69, 0.3);
}

.why-item h4 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 600;
}

.why-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin: 0;
    line-height: 1.7;
}

.why-image-wrapper {
    position: relative;
}

.why-image-wrapper img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

/* ==========================
   COUNTER SECTION
========================== */
.counter-section {
    background-image: linear-gradient(rgba(10, 30, 63, 0.92), rgba(26, 58, 110, 0.92)), url('../images/b3.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 20px 0;
    color: var(--white);
    position: relative;
}

.counter-box {
    padding: 20px;
    transition: var(--transition);
}

.counter-box:hover {
    transform: translateY(-5px);
}

.counter-box i {
    font-size: 50px;
    color: var(--gold-accent);
    margin-bottom: 15px;
    display: inline-block;
}

.counter-box .counter {
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 5px;
    line-height: 1;
}

.counter-box .counter::after {
    content: '+';
    color: var(--gold-accent);
}

.counter-box p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    font-weight: 500;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================
   GALLERY SECTION
========================== */
.gallery-section {
    background: var(--bg-light);
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 30, 63, 0.85), rgba(26, 58, 110, 0.85));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay i {
    color: var(--white);
    font-size: 40px;
    transform: scale(0);
    transition: transform 0.4s ease 0.1s;
}

.gallery-item:hover img {
    transform: scale(1.15);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* ==========================
   FAQ SECTION
========================== */
.faq-section {
    background: var(--white);
}

.accordion-item {
    border: 1px solid var(--border-light);
    border-radius: 12px !important;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.accordion-item:hover {
    box-shadow: var(--shadow-md);
}

.accordion-button {
    background: var(--white);
    color: var(--navy-dark);
    font-weight: 600;
    font-size: 16px;
    padding: 20px 25px;
    border: none;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--navy-primary), var(--navy-light));
    color: var(--white);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231a3a6e'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 22px 25px;
    color: var(--text-muted);
    line-height: 1.8;
    background: var(--white);
    font-size: 15px;
}

/* ==========================
   CONTACT SECTION
========================== */
.contact-section {
    background: var(--bg-light);
}

.contact-info-wrapper {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy-primary));
    padding: 40px 35px;
    border-radius: 20px;
    color: var(--white);
    height: 100%;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.contact-info-wrapper::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212, 164, 69, 0.15), transparent);
    border-radius: 50%;
}

.contact-info-wrapper h3 {
    color: var(--white);
    font-size: 26px;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.contact-info-wrapper>p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
    font-size: 14px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
}

.contact-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.12);
    color: var(--gold-accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-info-item h4 {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-info-item p,
.contact-info-item a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    margin: 0;
    line-height: 1.6;
}

.contact-info-item a:hover {
    color: var(--gold-accent);
}

.contact-form-wrapper {
    background: var(--white);
    padding: 40px 35px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}

.contact-form-wrapper h3 {
    color: var(--navy-dark);
    font-size: 26px;
    margin-bottom: 25px;
}

.contact-form-wrapper .form-control {
    border: 1.5px solid var(--border-light);
    border-radius: 10px;
    padding: 12px 18px;
    font-size: 15px;
    transition: var(--transition);
    background: var(--bg-light);
    color: var(--text-dark);
}

.contact-form-wrapper .form-control:focus {
    border-color: var(--navy-light);
    box-shadow: 0 0 0 4px rgba(74, 127, 193, 0.1);
    background: var(--white);
}

.contact-form-wrapper .form-control::placeholder {
    color: var(--text-muted);
}

.contact-form-wrapper textarea.form-control {
    resize: vertical;
    min-height: 130px;
}

.form-message {
    margin-top: 15px;
    padding: 12px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    display: none;
}

.form-message.success {
    background: #d4f4dd;
    color: #1a7740;
    border: 1px solid #b3e6c1;
    display: block;
}

.form-message.error {
    background: #fbe0e0;
    color: #c93030;
    border: 1px solid #f4b8b8;
    display: block;
}

/* ==========================
   FOOTER
========================== */
.main-footer {
    background: var(--navy-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 70px 0 0;
}

.footer-widget {
    margin-bottom: 30px;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-brand .brand-text {
    color: var(--white);
}

.footer-brand .brand-text span {
    color: var(--gold-accent);
}

.footer-widget p {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 20px;
}

.footer-widget h4 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 12px;
}

.footer-widget h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gold-accent);
    border-radius: 3px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links li a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.footer-links li a i {
    color: var(--gold-accent);
    font-size: 12px;
    transition: var(--transition);
}

.footer-links li a:hover {
    color: var(--gold-accent);
    padding-left: 5px;
}

.footer-links li a:hover i {
    transform: translateX(3px);
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    margin-bottom: 14px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.6;
}

.footer-contact li i {
    color: var(--gold-accent);
    margin-top: 4px;
    flex-shrink: 0;
}

.footer-contact li a {
    color: rgba(255, 255, 255, 0.75);
}

.footer-contact li a:hover {
    color: var(--gold-accent);
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gold-accent);
    color: var(--white);
    transform: translateY(-4px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 22px 0;
    margin-top: 40px;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom i {
    color: #e74c3c;
    margin: 0 3px;
}

/* ==========================
   FLOATING ICONS
========================== */
.floating-whatsapp,
.floating-call {
    position: fixed;
    bottom: 130px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 26px;
    z-index: 998;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.floating-whatsapp {
    left: 25px;
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.floating-call {
    right: 25px;
    background: linear-gradient(135deg, var(--navy-primary), var(--navy-light));
}

.floating-whatsapp:hover,
.floating-call:hover {
    transform: scale(1.1) rotate(8deg);
    color: var(--white);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4), var(--shadow-md);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0), var(--shadow-md);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), var(--shadow-md);
    }
}

.floating-call {
    animation-delay: 1s;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 10px;
    right: 25px;
    width: 45px;
    height: 45px;
    background: var(--navy-dark);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 997;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--navy-primary);
    color: var(--white);
    transform: translateY(-4px);
}

/* ==========================
   RESPONSIVE MEDIA QUERIES
========================== */

/* Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {
    .section-title {
        font-size: 36px;
    }

    .carousel-caption-custom h1 {
        font-size: 52px;
    }
}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
    .section-padding {
        padding: 70px 0;
    }

    .section-title {
        font-size: 32px;
    }

    .carousel-item {
        height: 80vh;
        min-height: 500px;
    }

    .carousel-caption-custom {
        text-align: center;
        max-width: 100%;
    }

    .carousel-caption-custom h1 {
        font-size: 44px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .carousel-caption-custom p {
        margin-left: auto;
        margin-right: auto;
    }

    .navbar-collapse {
        background: var(--white);
        padding: 20px;
        margin-top: 15px;
        border-radius: 12px;
        box-shadow: var(--shadow-md);
    }

    .navbar-nav .nav-link {
        padding: 10px 0 !important;
        border-bottom: 1px solid var(--border-light);
    }

    .navbar-nav .nav-link:last-child {
        border-bottom: none;
    }

    .navbar-nav .nav-link::after {
        display: none;
    }

    .btn-quote {
        margin-top: 10px;
        display: inline-block;
        text-align: center;
    }

    .about-image-wrapper {
        padding: 0 0 50px 50px;
        margin-bottom: 30px;
    }

    .about-experience {
        right: 0;
    }

    .counter-section {
        background-attachment: scroll;
    }
}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
    body {
        font-size: 15px;
    }

    .section-padding {
        padding: 60px 0;
    }

    .section-title {
        font-size: 28px;
    }

    .section-heading {
        margin-bottom: 35px;
    }

    .top-bar-info {
        text-align: center;
        font-size: 13px;
    }

    .top-bar-info span {
        display: block;
        margin-right: 0;
        margin-bottom: 5px;
    }

    .top-bar-info span:last-child {
        margin-bottom: 0;
    }

    .carousel-item {
        height: 75vh;
        min-height: 450px;
    }

    .carousel-caption-custom h1 {
        font-size: 32px;
    }

    .carousel-caption-custom p {
        font-size: 15px;
    }

    .hero-tag {
        font-size: 11px;
        padding: 6px 16px;
    }

    .btn-primary-custom,
    .btn-outline-custom {
        padding: 11px 25px;
        font-size: 14px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }

    .about-img-sub {
        display: none;
    }

    .about-image-wrapper {
        padding: 0;
    }

    .about-img-main {
        width: 100%;
    }

    .about-experience {
        top: 15px;
        right: 15px;
        padding: 15px 20px;
    }

    .about-experience h3 {
        font-size: 32px;
    }

    .about-experience p {
        font-size: 11px;
    }

    .service-body {
        padding: 30px 22px 22px;
    }

    .counter-box .counter {
        font-size: 36px;
    }

    .counter-box i {
        font-size: 38px;
    }

    .counter-box p {
        font-size: 13px;
    }

    .contact-info-wrapper,
    .contact-form-wrapper {
        padding: 30px 22px;
    }

    .accordion-button {
        font-size: 14px;
        padding: 16px 18px;
    }

    .accordion-body {
        padding: 18px 18px;
        font-size: 14px;
    }

    .floating-whatsapp,
    .floating-call {
        width: 50px;
        height: 50px;
        font-size: 22px;
        bottom: 130px;
    }

    .floating-whatsapp {
        left: 15px;
    }

    .floating-call {
        right: 15px;
    }

    .back-to-top {
        bottom: 10px;
        right: 15px;
        width: 40px;
        height: 40px;
    }

    .footer-bottom .text-md-end {
        text-align: center !important;
        margin-top: 10px;
    }

    .footer-bottom p {
        text-align: center;
    }
}

/* Extra small devices */
@media (max-width: 575.98px) {
    .section-title {
        font-size: 25px;
    }

    .carousel-caption-custom h1 {
        font-size: 28px;
    }

    .brand-text {
        font-size: 18px;
    }

    .brand-logo {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn-primary-custom,
    .hero-buttons .btn-outline-custom {
        width: 100%;
        justify-content: center;
    }
}