/* TABLE OF CONTENTS
    1. Theme Variables & Reset
    2. Preloader
    3. Form Elements
    4. Buttons
    6. Scroll Up Btn
    7. Labels
    8. Tooltip
    9. Section
    10. Navigation Top
    11. Header Full Screen Img          ← background image added here
    12. Features Img
    13. Footer
	14. Media Queries
*/

/* 1. Theme Variables & Global Styles */
:root {
  --dark-bg: #0a1428;           /* deep navy-black main background */
  --dark-bg-alt: #001f3f;       /* slightly lighter navy for gradients */
  --gold: #d4af37;              /* metallic gold */
  --gold-light: #f0d070;        /* brighter gold hover/glow */
  --gold-dark: #b8972e;         /* deeper gold shadow */
  --text-light: #f0f0f0;        /* light text on dark */
  --text-muted: #c0c0c0;
  --accent-border: rgba(212, 175, 55, 0.25);
  --transition: all 0.4s ease;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  height: 100%;
}

body {
  font-family: 'Roboto', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  font-size: 16px;
  height: 100%;
  font-weight: 300;
  background: linear-gradient(267deg, var(--dark-bg) 0%, var(--dark-bg-alt) 100%);
  color: var(--text-light);
}

#page {
  height: 100%;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.3;
  color: var(--gold);
  font-weight: 400;
  text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

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

a:hover, a:focus {
  color: var(--gold-light);
}

p {
  margin: 0 0 1.5rem 0;
  color: var(--text-muted);
}

.img-responsive {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Custom classes */
.headtext {
  color: var(--gold);
  font-style: italic;
  font-stretch: expanded;
  font-weight: 900;
  letter-spacing: 1px;
}

.cytat {
  color: var(--text-light);
  font-style: italic;
  font-size: 23px;
  line-height: 30px;
  font-weight: 300;
}

.cytat2 {
  color: var(--text-light);
  font-style: italic;
  font-size: 18px;
  line-height: 30px;
  font-weight: 300;
}

/* Selection highlight */
::selection {
  background: var(--gold);
  color: var(--dark-bg);
}

/* 2. Preloader */
#page-preloader {
  background-color: var(--dark-bg);
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 9999;
  padding-top: 15%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#page-preloader h1 {
  font-size: 48px;
  font-weight: 300;
  margin: 0;
  text-transform: uppercase;
  color: var(--gold);
  font-style: italic;
}

.spinner {
  width: 60px;
  height: 60px;
  position: relative;
  margin: 40px auto;
}

.double-bounce1, .double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--gold);
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  animation: bounce 2s infinite ease-in-out;
}

.double-bounce2 {
  animation-delay: -1s;
}

@keyframes bounce {
  0%, 100% { transform: scale(0); }
  50%      { transform: scale(1); }
}

/* 3. Form Elements */
.form-control {
  height: 47px;
  padding: 0.5rem 1rem;
  font-size: 14px;
  color: var(--text-light);
  background-color: rgba(255,255,255,0.08);
  border: 1px solid var(--accent-border);
  border-radius: 4px;
}

/* 4. Buttons */
.btn {
  font-weight: 500;
  border: none;
  border-radius: 4px;
  transition: var(--transition);
  padding: 0.75rem 1.5rem;
  font-size: 16px;
  cursor: pointer;
}

.btn-primary,
.btn-success,
.btn-color1 {
  background: linear-gradient(145deg, var(--gold), var(--gold-dark));
  color: var(--dark-bg);
  box-shadow: 0 4px 15px rgba(212,175,55,0.3);
}

.btn-primary:hover,
.btn-success:hover,
.btn-color1:hover {
  background: linear-gradient(145deg, var(--gold-light), var(--gold));
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(212,175,55,0.5);
}

/*Call buttons*/

.call-icon {
  height: 200px !important;                 /* Adjust: 24–32px to fit nicely !IMPORTANT BEAST MODE ACTIVATED*/
  width: auto;                  /* Keeps natural proportions */
  vertical-align: middle;       /* Aligns with any text if present */
  margin-right: 8px;            /* Space between icon and text/number if kept */
  border-radius: 50%;           /* Makes it perfectly round like your footer logo */
  /* Alternative softer rounding: border-radius: 8px; */
  transition: transform 0.3s ease;
}

.call-icon:hover {
  transform: scale(1.15);       /* Subtle zoom on hover */
}

/* Optional: Make the link area bigger for easier clicks */
.contact a {
  padding: 4px 8px;             /* Larger tap/click zone */
  display: inline-flex;
  align-items: center;
}
@keyframes pulse {         /*BEAST MODE pulse animate, makes the icons transform on repeat*/
  0% { transform: scale(1.02); }
  50% { transform: scale(1.08); }
  100% { transform: scale(1.02); }
}
.call-icon {
  animation: pulse 2s infinite ease-in-out;
}

.contact-icon {
  vertical-align: middle;
  border-radius: 50%;           /* Keeps both rounded */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.contact-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

/* Phone call icon (wider shape) – make it a bit taller to match visual weight */
.call-icon {
  height: 70px !important;                 /* Adjust this value – try 70–90px */
  width: auto !important;
  margin: 0 12px !important;               /* Space around it */
}

/* WhatsApp icon (more square) – slightly smaller height to balance */
.whatsapp-icon {
  height: 80px !important;                 /* Adjust this – try 60–80px */
  width: auto !important;
  margin: 0 12px !important;
} /*Added !important to ensure the icon play*/

/* Center them nicely in the paragraph */
.contact p {
  display: flex;
  align-items: center;
  justify-content: center;      /* Centers both icons + text */
  flex-wrap: wrap;
  gap: 24px;                    /* Space between "Call Now" and "WhatsApp" sections */
  margin: 24px 0;
}

/* 6. Scroll Up Btn */
.scroll-up-btn {
  width: 50px;
  height: 50px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  position: fixed;
  bottom: 44px;
  right: 64px;
  display: none;
  background: rgba(10,20,40,0.8);
  text-align: center;
  line-height: 46px;
  font-size: 24px;
  color: var(--gold);
  cursor: pointer;
  transition: var(--transition);
}

.scroll-up-btn:hover {
  background: var(--gold);
  color: var(--dark-bg);
}

/* 9. Section */
section {
  padding: 85px 0;
  background: transparent;
  border-bottom: 1px solid var(--accent-border);
}

/* 10. Navigation Top */

/* Desktop - Keep your original navy + gold look */
.navbar-nav .nav-link {
    color: #d4af37 !important;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 15px;
    padding: 12px 18px !important;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #ffffff !important;
    background-color: rgba(212, 175, 55, 0.15);
    border-radius: 4px;
}

/* Mobile hamburger styling */
.navbar-toggler {
    border-color: #d4af37;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23d4af37' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* When menu drops down on mobile */
@media (max-width: 991px) {
    .navbar-collapse {
        background-color: #0a1428;
        margin-top: 8px;
        border-top: 1px solid rgba(212, 175, 55, 0.3);
        padding: 20px 0;
    }
    
    .nav-link {
        font-size: 1.1rem;
        padding: 15px 0 !important;
        text-align: center;
    }
}

.navbar {
    background-color: #0a1428 !important;
}

.nav-link {
    color: #d4af37 !important;
    font-weight: 600;
    text-transform: uppercase;
}

.nav-link:hover,
.nav-link.active {
    color: white !important;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23d4af37' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.navigation-top {
  background: rgba(10, 20, 40, 0.92);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  
  /*Changes for logo alignment*/
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 30px;
  min-height: 70px;
}

/*new code to correct navbar logo issue*/

/* Fix logo vertical alignment in Bootstrap 3 navbar */
/* Simple logo fix */
.navbar-fixed-top .navbar-brand {
    padding: 5px 15px;
    height: auto;
}

.navbar-fixed-top .navbar-brand img {
    max-height: 55px;
    width: auto;
    display: block;
    margin: 0;
    vertical-align: middle;
}

.navbar-fixed-top {
    min-height: 70px;
}
.navbar-fixed-top .navbar-brand {
    padding: 8px 15px;
}

.navbar-fixed-top .navbar-brand img {
    max-height: 55px;
    width: auto;
    display: block;
}

.navbar-fixed-top {
    min-height: 72px;
}
.navbar-fixed-top .navbar-brand img {
    max-height: 55px;
    display: block;
    margin-top: 0;
}

.navbar-fixed-top {
    min-height: 75px;
    padding: 8px 0;
}

.navbar-fixed-top .navbar-brand img {
    margin-top: -20px !important;
}

.navbar-brand img {
    margin-top: -25px !important;
    max-height: 55px !important;
}

/*end of new code for navbar logo issue*/


.navigation-top .navbar-brand img {
  /*max-height: 54px;*/
  max-height: 54px;
  height: 54px; /*forces consistent height*/
  width: auto;
  border-radius: 50%;
  display: block; /*removes tiny bottom gaps images sometimes have*/
  /*optional*/
  object-fit: contain;
}
.navigation-top .navbar-nav{
	display: flex;
	align-items: center;
	margin: 0;
	padding: 0;
	list-style: none;
}

.navigation-top .navbar-nav li a {
  color: var(--text-muted);
  /*padding: 12px 12px 12px;*/
  padding: 10px 16px;
  margin: 0 4px; /*added 0 4px from 4px*/
  transition: var(--transition);
}

.navigation-top .navbar-nav li a:hover {
  color: var(--gold);
}

/* 11. Header Full Screen Img – with your Logo2.jpeg background */
.header-full-screen-img {
  background: 
    linear-gradient(rgba(10, 20, 40, 0.45), rgba(0, 31, 63, 0.55)),
    url('../img/Logo2.jpeg') center / cover no-repeat fixed;
	
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: scroll;
	
  padding-top: 1%;
  min-height: 100vh;
  color: var(--text-light);
  background-blend-mode: normal; /*multiply, screen, overlay*/
  position: relative;
}

.header-full-screen-img {
    background-image: 
        linear-gradient(rgba(10, 20, 40, 0.45), rgba(0, 31, 63, 0.55)),
        url('../img/Logo2.jpeg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll;
    min-height: 70vh;                      /* slightly smaller on very small screens */
    padding: 60px 20px 40px;
    background-color: #0a1f3f;
}

@media (max-width: 991px) {
    .header-full-screen-img {
        padding: 200px 20px 40px;
    }
}

/* On wider screens → go back to more "hero" feeling */
@media (min-width: 768px) {
.header-full-screen-img {
    background:
        linear-gradient(
            rgba(10, 20, 40, 0.45),
            rgba(0, 31, 63, 1)
        ),
        url('../img/Logo2.jpeg');

    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll;

    min-height: 100vh;
    padding-top: 8%;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;
    position: relative;
}

.headtext p {
    text-shadow: 0 3px 12px rgba(0,0,0,0.8);
}

.header-full-screen-img .logo {
  margin-bottom: 30px;
}

.header-full-screen-img h1 {
  font-size: 48px;
  font-weight: 300;
  margin: 0;
  text-transform: uppercase;
  color: var(--gold);
  font-style: italic;
  text-shadow: 0 3px 12px rgba(0,0,0,0.6);
}

.header-full-screen-img p {
  margin-top: 10px;
  font-size: 24px;
  font-weight: 300;
  color: var(--text-light);
}

/* 12. Features Img */
.features-img {
  padding-top: 65px;
  overflow: hidden;
}

.features-img h2 {
  font-size: 48px;
  padding: 0;
  margin: 0 0 80px 0;
  font-weight: 300;
  line-height: 1.2;
  color: var(--gold);
}

/* Keep remaining sections mostly as before – only colors updated */
.newsletter-simple,
.product-info,
.call-to-action,
.review-slider,
.footer-simple {
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-bg-alt) 100%);
}

/* 13. Footer*/

.scroll-up-btn {
  width: 50px;
  height: 50px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  position: fixed;
  bottom: 44px;
  right: 64px;
  display: none;
  background: rgba(10,20,40,0.8);
  text-align: center;
  line-height: 46px;
  font-size: 24px;
  color: var(--gold);
  cursor: pointer;
  transition: var(--transition);
}

.scroll-logo {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 50%;       /* Makes it circular - remove if you prefer square/rectangular */
  box-shadow: 0 4px 12px rgba(0,0,0,0.3); /* Optional: adds depth */
}

/* 14. Media Queries (shortened example – add your original detailed rules if needed) */
@media (max-width: 1200px) {
  .header-full-screen-img h1 { font-size: 42px; }
  section { padding: 65px 0; }
}

@media (max-width: 992px) {
  .header-full-screen-img { padding-top: 15%; min-height: 60vh; }
  .header-full-screen-img h1 { font-size: 36px; }
}

@media (max-width: 660px) {
  .header-full-screen-img h1 { font-size: 28px; }
  .header-full-screen-img { padding-top: 20%; }
}

/* Services Images */

.service-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform .3s ease;
}

.service-image:hover {
    transform: scale(1.03);
}

.service-image-mobile {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

#servicesCarousel {
    margin-top: 20px;
}

.about-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .about-image {
        max-width: 250px;
        margin: 0 auto 20px auto;
        display: block;
    }
}

@media (max-width: 991px) {
    .headtext {
        padding-top: 100px;
    }
}

#contact-form input::placeholder,
#contact-form textarea::placeholder {
    color: #ffffff !important;
    opacity: 1 !important;
}

.headtext h1 {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    color: rgba(212, 175, 55, 1);
    text-shadow: 3px 3px 12px rgba(0,0,0,0.7);
}

@media (max-width: 768px) {
    .headtext h1 {
        font-size: 2.8rem;
        font-weight: 900;
    }
}

/* Footer */

.rex-footer {
    padding: 60px 0 30px;
    color: #fff;
}

.rex-footer .row {
    display: flex;
    justify-content: space-between;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin-top: 20px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-links li {
    display: block !important;
    float: none !important;
    width: auto !important;
    margin-bottom: 12px !important;
}

.footer-links a {
    color: #d4af37;
    text-decoration: none;
}

.footer-links a:hover {
    color: #fff;
}

/* Mobile Footer Fix */
@media (max-width: 768px) {

    .rex-footer {
        padding: 40px 20px !important;
        text-align: center;
    }

    .rex-footer .row {
        display: block !important;
    }

    .rex-footer .col-md-4 {
        width: 100% !important;
        max-width: 100% !important;
        margin-bottom: 35px;
        text-align: center !important;
    }

    .footer-links {
        align-items: center !important;
        text-align: center !important;
    }

    .footer-links li {
        width: auto !important;
        margin-bottom: 10px !important;
    }

    .social-icon {
        margin: 0 8px;
    }

    .footer-bottom {
        text-align: center;
        margin-top: 20px;
    }
}

.map-container iframe {
    width: 100%;
    min-height: 450px;
    border-radius: 10px;
    border: 2px solid rgba(212,175,55,0.2);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

#contact {
    text-align: center;
}

#contact p {
    text-align: center;
}

#contact h4 {
    text-align: center;
}

#contact a {
    display: inline-block;
    text-align: center;
}

.contact-icon,
.whatsapp-icon {
    display: block;
    margin: 0 auto;
}