/* =========================================
   NEVILLE SION - LUXURY HOTEL INVESTMENTS
   Main Stylesheet - UPDATED WITH LOGO & TRANSPARENT NAVBAR
   ========================================= */

   
   
/* ADD THIS TO THE TOP OF YOUR CSS FILE - BEFORE ALL OTHER STYLES */

/* Reset and Base Styles - UPDATED */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden; /* Prevent horizontal scroll */
    width: 100%;
    position: relative;
}

/* HAMBURGER MENU STYLES - UPDATED AND ENHANCED */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    cursor: pointer;
    padding: 0;
    border: none;
    background: transparent;
    z-index: 1001;
    position: relative;
}

.nav-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background: var(--primary-gold);
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
    transform-origin: left center;
}

.nav-toggle span:nth-child(1) {
    top: 0px;
}

.nav-toggle span:nth-child(2) {
    top: 10px;
}

.nav-toggle span:nth-child(3) {
    top: 20px;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
    top: -3px;
    left: 8px;
}

.nav-toggle.active span:nth-child(2) {
    width: 0%;
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 21px;
    left: 8px;
}

/* NAVIGATION FIXES */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(10, 9, 48, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0.5rem 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    width: 100%;
}

/* Mobile Responsive Design */
@media (max-width: 968px) {
    /* Show hamburger menu */
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(10, 9, 48, 0.98);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        padding-top: 80px;
        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        font-size: 1.5rem;
        padding: 1rem 2rem;
        width: auto;
        text-align: center;
        color: var(--white);
        display: block;
        transition: var(--transition);
    }

    .nav-link:hover {
        color: var(--primary-gold);
        background: rgba(212, 175, 55, 0.1);
        border-radius: 8px;
    }

    /* Layout adjustments - stack sections vertically */
    .section-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .opportunities-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Fix container widths */
    .container {
        max-width: 100%;
        padding: 0 1rem;
        margin: 0 auto;
    }

    /* Hero adjustments */
    .hero-benefits {
        text-align: center;
        max-width: 100%;
    }

    .hero-cta {
        padding: 1.5rem;
        margin: 0 0;
        max-width: 100%;
    }

    .form-group {
        flex-direction: column;
        gap: 1rem;
    }

    .subscribe-btn {
        width: 100%;
    }

    /* Contact form adjustments */
    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .credentials-box,
    .contact-form-container {
        padding: 2rem;
        width: 100%;
        max-width: 100%;
    }

    .service-card {
        padding: 2rem 1.5rem;
        width: 100%;
        max-width: 100%;
    }

    /* Footer adjustments */
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        width: 100%;
    }
}

/* Mobile devices */
@media (max-width: 768px) {
    /* Ensure no horizontal overflow */
    html, body {
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .container {
        padding: 0 1rem;
        margin: 0;
        max-width: 100%;
        width: 100%;
    }

    /* Navigation adjustments */
    .navbar {
        padding: 0.5rem 0;
        width: 100vw;
        left: 0;
        right: 0;
    }

    .nav-container {
        padding: 0 1rem;
        max-width: 100%;
        width: 100%;
    }

    /* Hero section */
    .hero {
        background-attachment: scroll;
        min-height: 90vh;
        width: 100%;
        overflow: hidden;
    }

    .hero-content {
        padding-top: 90px;
        width: 100%;
        max-width: 100%;
    }

    .hero-headline {
        font-size: clamp(2rem, 6vw, 3rem);
        line-height: 1.2;
        margin-bottom: 1rem;
        max-width: 100%;
    }

    .hero-subheadline {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        max-width: 100%;
    }

    .hero-text {
        max-width: 100%;
        padding: 0;
        width: 100%;
    }

    .hero-benefits {
        margin-bottom: 2rem;
        max-width: 100%;
        width: 100%;
    }

    .benefit-item {
        font-size: 1rem;
        gap: 0.75rem;
        max-width: 100%;
    }

    .hero-cta {
        padding: 1.5rem 1rem;
        margin: 0;
        max-width: 100%;
        width: 100%;
    }

    .cta-title {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }

    .email-form {
        width: 100%;
        max-width: 100%;
    }

    /* Fix all sections to prevent overflow */
    .about, .opportunities, .services, .contact {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
        max-width: 100%;
    }

    .about-text {
        font-size: 1rem;
        line-height: 1.6;
        max-width: 100%;
    }

    .credentials-box {
        padding: 1.5rem;
        margin-top: 2rem;
        max-width: 100%;
        width: 100%;
    }

    .credentials-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .credential-item {
        padding: 0.75rem;
        margin-bottom: 1rem;
        max-width: 100%;
    }

    .credential-item strong {
        font-size: 1.1rem;
    }

    /* Opportunities section */
    .opportunities {
        padding: 4rem 0;
        width: 100%;
    }

    .opportunities-grid {
        width: 100%;
        max-width: 100%;
    }

    .opportunity-card {
        margin: 0;
        max-width: 100%;
        width: 100%;
    }

    .card-image {
        height: 200px;
        width: 100%;
    }

    .card-content {
        padding: 1.5rem;
        width: 100%;
    }

    .card-title {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .investment-details {
        padding: 0.75rem;
        margin-bottom: 1rem;
        width: 100%;
    }

    .value {
        font-size: 1.1rem;
    }

    .value.roi {
        font-size: 1.3rem;
    }

    /* Services section */
    .services {
        padding: 4rem 0;
        width: 100%;
    }

    .services-grid {
        width: 100%;
    }

    .service-card {
        padding: 2rem 1rem;
        max-width: 100%;
        width: 100%;
    }

    .service-title {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .service-features {
        font-size: 0.95rem;
    }

    /* Contact section */
    .contact {
        padding: 4rem 0;
        width: 100%;
    }

    .contact-content {
        width: 100%;
    }

    .contact-description {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
        max-width: 100%;
    }

    .contact-info {
        padding: 1.5rem;
        max-width: 100%;
        width: 100%;
    }

    .contact-item {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .contact-form-container {
        padding: 2rem 1.5rem;
        max-width: 100%;
        width: 100%;
    }

    .contact-form {
        width: 100%;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        padding: 0.875rem;
        font-size: 1rem;
        width: 100%;
        max-width: 100%;
    }

    .submit-btn {
        padding: 1rem;
        font-size: 1rem;
        width: 100%;
    }

    /* Footer */
    .footer {
        padding: 2rem 0;
        width: 100%;
    }

    .footer-content {
        width: 100%;
        max-width: 100%;
    }

    .footer-brand h1 {
        font-size: 1.5rem;
    }

    .logo-tagline {
        font-size: 0.75rem;
    }

    .footer-text {
        font-size: 0.9rem;
        margin-top: 1rem;
        max-width: 100%;
    }
}
   

/* CSS Variables #0B264D */
:root {
    --primary-navy: #0041A1;
    --primary-gold: #d4af37;
    --gold-hover: #c19b26;
    --light-gold: #f7f1e3;
    --dark-navy: #0A0633;
    --text-dark: #2d3748;
    --text-light: #718096;
    --white: #ffffff;
    --light-gray: #f7fafc;
    --border-color: #e2e8f0;
    --shadow-light: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 8px 30px rgba(26, 54, 93, 0.2);
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #c19b26 100%);
    --gradient-navy: linear-gradient(135deg, #1a365d 0%, #142a47 100%);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 8px;
    --border-radius-large: 16px;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    color: var(--primary-navy);
}

h1 { font-size: clamp(3rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 1.8rem); }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    font-weight: 400;
	font-size: clamp(0.9rem, 2.5vw, 1rem);
}

h11 {
    all: unset; /* resets default styles */
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1;
    font-size: clamp(1.5rem, 5vw, 2rem);
    color: var(--primary-gold);
    display: block; /* ensure it behaves like a heading */
}


  .nav-brand h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: clamp(1.5rem, 5vw, 2rem);
  color: var(--primary-gold);
  margin-bottom: 0.1rem; 
  line-height: 1;
  gap: 0.2rem; 
  padding: 0;
  line-height: 1;
  text-align: center;    
  /* display: flex;
  flex-direction: line; 
  align-items: center;      
  flex: 0 1 auto; */     
  max-width: max-content;   
  margin: 0.5 auto;  
}



/* .nav-brand h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: clamp(1.5rem, 5vw, 2rem);
  color: var(--primary-gold);
  margin: 0;
  padding: 0;
  line-height: 1;
  text-align: center;
} */


.logo-tagline {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: 0.875rem;
  color: var(--primary-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0.125rem 0 0;
  text-align: left;
}


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

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

/* Gold Text Utility Class */
.gold-text {
    color: var(--primary-gold);
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.text-center { text-align: center; }

.section-title {
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

/* Navigation - UPDATED WITH LOGO AND TRANSPARENCY */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 9, 48, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0.5rem 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	
  
}

.navbar.scrolled {
    background: rgba(14, 13, 64, 0.5);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: var(--shadow-medium);
    padding: 0.2rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
	position: relative;
}

.nav-brand {
    color: var(--white);
	text-align: left;        /* align text inside left */
  	flex: 1;  /* optionally take available space */
	z-index: 1001;
}

/* Logo styles for navbar */
.brand-logo {
    height: 45px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.brand-logo:hover {
    transform: scale(1.05);
}

.navbar.scrolled .brand-logo {
    height: 35px;
}

.nav-menu {
  /*  display: flex;
    align-items: center;
	font-family: 'Open Sans'; /* Example of professional font 
    font-weight: 600; /* Bolder for emphasis 
	gap: 1.4rem; /* Slightly tighter spacing 
    align-items: center; */
	
	font-family: 'Open Sans';
	font-weight: 600;
	flex-direction: line;
    display: flex;
    flex-direction: line;
    justify-content: center;
    align-items: center;
    gap: 1.4rem;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}

.nav-menu.active {
    right: 0;
}

.nav-link {
    color: var(--white);
    font-weight: 500;
    padding: 1rem 0;
    position: relative;
    transition: var(--transition);
	text-transform: uppercase;
    letter-spacing: 0.08em; /* Adds spacing for readability */
	font-size: 1rem;
    text-align: center;
    width: 100%;
	/* padding: 0.3rem 0; */
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
	transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: width 0.3s ease;
	font-size: 1rem;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}





/*
.hero-headline {
    color: white;
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
    margin: 1rem 0;
    text-shadow: none;
}
*/






/* Hero Section - UPDATED WITH LARGER H1 */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--dark-navy) 100%); 
	/* background: transparent !important; Ensure transparent background */
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    /* background-attachment: fixed; 
	padding: 1rem 0; */
		
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 9, 50, 0.98) 0%, rgba(4, 1, 60, 0.7) 100%);
	z-index: 0.3;
}


.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    width: 100%;
    padding-top: 100px; /* space to keep text below navbar */

	
	/* background: transparent !important;
	 background: none !important; */
}


.hero-text {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
	color: var(--white);
	/* background: transparent !important;  Ensure parent container is transparent 
	background: none !important; */
}





.hero-headline {
    color: #ffffff;
    margin-bottom: 1.5rem;
	padding-top: 0.7rem;
    /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); */
	
	text-shadow: 
    0 0 3px rgba(255, 255, 255, 0.8),
    0 0 8px rgba(212, 175, 55, 0.9),
    0 0 16px rgba(212, 175, 55, 0.6),
    0 0 24px rgba(212, 175, 55, 0.3),
    2px 2px 6px rgba(0, 0, 0, 0.3);
	
    font-size: clamp(3rem, 5vw, 4rem);
    font-weight: 700;
    background:transparent !important;
	/* background: none !important; */
    letter-spacing: -0.02em;
	overflow: visible; /* allow descenders to show */
	
	line-height: 1.2;  /* slightly increased line height */
    padding-bottom: 1.5rem; /* extra space for descenders */
	
}

.hero-subheadline {
    font-family: 'Playfair Display', serif;  /* Elegant serif font */
    font-style: italic;                      /* Adds sophistication */
    font-weight: 400;                        /* Light weight for refined look */
    font-size: 1.25rem;                      /* Keeps size readable */
    color: rgba(255, 255, 255, 0.85);       /* Slightly softened white */
    margin-bottom: 3rem;
    letter-spacing: 0.05em;                  /* Adds breathing space */
    line-height: 1.5;                        /* Better readability */
    max-width: 600px;                        /* Limits line length for elegance */
    margin-left: auto;                       /* Center horizontally */
    margin-right: auto;
    text-align: center;                      /* Center aligned for hero */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
	margin-bottom: 2 rem;
}



/*Hero headline trasparent/invisible styling 
.hero-headline {
    color: var(--white);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-subheadline {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    font-weight: 400;
}
*/

.hero-benefits {
    margin-bottom: 3rem;
    text-align: left;
    display: inline-block;
    font-variant-caps: small-caps;
	font-size-adjust: 0.45; /* tweak this number to balance lowercase size */
	font-weight: 400;                        /* Light weight for refined look */
    font-size: 1.25rem;                      /* Keeps size readable */
    color: rgba(255, 255, 255, 0.85);       /* Slightly softened white */
    margin-bottom: 3rem;
    letter-spacing: 0.05em;                  /* Adds breathing space */
}


.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
	text-align:left;
}

/* .benefit-text {
    flex: 1;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    line-height: 1.1;
} */

/* .checkmark {
    color: var(--primary-gold);
    font-size: 1.2rem;
    font-weight: bold;
} */

.checkmark {
    display: inline-block;
    width: 1.2em;
    height: 1.2em;
    background: url('../images/asus.svg') no-repeat center center;
    background-size: contain;
	background-color: transparent;
    text-indent: -9999px; /* Hide text "?" */

	
	
} 

.checkmark1 {
    display: inline-block;
    width: 2em;
    height: 2em;
    background: url('../images/intelli.svg') no-repeat center center;
    background-size: contain;
	background-color: transparent;
    text-indent: -9999px; /* Hide text "?" */
	
} 

.checkmark2 {
    display: inline-block;
    width: 2em;
    height: 2em;
    background: url('../images/dealad.svg') no-repeat center center;
    background-size: contain;
	background-color: transparent;
    text-indent: -9999px; /* Hide text "?" */
	
}

.checkmark3 {
    display: inline-block;
    width: 2em;
    height: 2em;
    background: url('../images/excldeal.svg') no-repeat center center;
    background-size: contain;
	background-color: transparent;
    text-indent: -9999px; /* Hide text "?" */
	
}

.hero-cta {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: var(--border-radius-large);
    border: 1px solid rgba(212, 175, 55, 0.3);
	margin: 0 1rem;
	
	position: relative;
    z-index: 10;
    margin-bottom: -1rem; /* Negative margin pulls it down */
}

.cta-title {
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
}

.email-form {
    max-width: 400px;
    margin: 0 auto;
}

.form-group {
    display: flex;
    gap: 0.5rem;
}

.email-input {
    flex: 1;
    padding: 1rem;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--border-radius);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1rem;
    transition: var(--transition);
}

.email-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.email-input:focus {
    outline: none;
    border-color: var(--primary-gold);
    background: rgba(255, 255, 255, 0.15);
}

.subscribe-btn {
    padding: 1rem 2rem;
    background: var(--gradient-gold);
    color: var(--primary-navy);
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-right: 2px solid var(--primary-gold);
    border-bottom: 2px solid var(--primary-gold);
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: var(--light-gray);
}

.section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.credentials-box {
    background: var(--white);
    padding: 3rem;
	
	font-weight: 400;                        /* Light weight for refined look */
    font-size: 1rem;                      /* Keeps size readable */
   
    margin-bottom: 1rem;
    
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-medium);
    border-left: 4px solid var(--primary-gold);
}

.credentials-title {
    color: var(--primary-navy);
    margin-bottom: 2rem;
    text-align: center;
	font-size: 2rem;
	font-variant: small-caps;
	font-size-adjust: 0.4; /* tweak this number to balance lowercase size */
	letter-spacing: 0.05em;                  /* Adds breathing space */
}

.credentials-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.credential-item {
    padding: 0.5rem;
padding-left: 1rem;
    background: var(--light-gold);
    border-radius: var(--border-radius);
    transition: var(--transition);
	/* font-variant: small-caps;
	font-size-adjust: 0.45;  tweak this number to balance lowercase size */
	letter-spacing: 0.02em;                 /* Adds breathing space */
	
}

.credential-item strong {
    font-size: 1.3rem;  
	font-variant: small-caps;
	font-size-adjust: 0.41; /* tweak this number to balance lowercase size */
	letter-spacing: 0.05em; /* Adds breathing space */
	
}


.credential-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-light);
}

.credential-item strong {
    color: var(--primary-navy);
}

/* Opportunities Section */
.opportunities {
    padding: 6rem 0;
    background: var(--white);
}

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

.opportunity-card {
    background: var(--white);
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.opportunity-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.opportunity-card:hover .card-image img {
    transform: scale(1.05);
}

.card-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.status-badge {
    background: var(--gradient-gold);
    color: var(--primary-navy);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.seller-motivated {
    background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
    color: var(--white);
}

.status-badge.portfolio {
    background: linear-gradient(135deg, #30b374 0%, #4be8a6 100%);
    color: var(--white);
}

.status-badge.development {
    background: linear-gradient(135deg, #3e52e5 0%, #408be8 100%);
    color: var(--white);
}

.card-content {
    padding: 2rem;
}

.card-title {
    margin-bottom: 1.5rem;
    color: var(--primary-navy);
}

.investment-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: var(--border-radius);
}

.detail-item {
    text-align: center;
}

.label {
    display: block;
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.value {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-navy);
}

.value.roi {
    color: var(--primary-gold);
    font-size: 1.5rem;
}

.features-list {
    list-style: none;
}

.features-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.features-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-size: 1.2rem;
}

.opportunities-cta {
    text-align: center;
    margin-top: 3rem;
}

.cta-note {
    font-style: italic;
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: var(--light-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: var(--border-radius-large);
    text-align: center;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.service-icon {
    margin-bottom: 2rem;
}

.icon-bg {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background: var(--light-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: var(--transition);
}

.service-card:hover .icon-bg {
    background: var(--primary-gold);
    transform: scale(1.1);
}

.service-title {
    margin-bottom: 1.5rem;
    color: var(--primary-navy);
}

.service-features {
    list-style: none;
    text-align: left;
}

.service-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
	top: 0.3rem; /* vertically center */
    width: 1rem;
    height: 1rem;
    background: url('../images/bullet_icon.svg') no-repeat center center;
    background-size: contain;
    color: var(--primary-gold);
    font-weight: bold;
}

.cagr-line {
    text-align: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-gold);
    border-top: 2px solid #0d47a1;
    padding-top: 10px;
    margin-top: 0;
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
	font-family: 'Playfair Display', serif;  /* Elegant serif font */
    font-style: italic;                      /* Adds sophistication */
    font-weight: 400;                        /* Light weight for refined look */
    font-size: 1.25rem;
	margin-bottom: 0.5rem;
  }

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.contact-info {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: var(--border-radius-large);
    border-left: 4px solid var(--primary-gold);
}

.contact-item {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.contact-item strong {
    color: var(--primary-navy);
}

.disclaimer {
    margin-top: 1.5rem;
    font-style: italic;
    color: var(--text-light);
    font-size: 0.9rem;
}

.contact-form-container {
    background: var(--light-gray);
    padding: 3rem;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-medium);
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-form .form-group {
    display: block;
    margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.contact-form select {
    cursor: pointer;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--gradient-gold);
    color: var(--primary-navy);
    border: none;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Footer - UPDATED WITH LOGO */
.footer {
    background: var(--dark-navy);
    color: var(--white);
    padding: 3rem 0;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: flex-start;  /* align child items to left */
    align-items: center;     /* vertically center if needed */
  gap: 5rem;               /* optional spacing if multiple items */
  flex-wrap: wrap;         /* if you want wrapping on smaller screens */
    
    
}

/*
.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
} */


.footer-brand h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: clamp(1.5rem, 5vw, 2rem);
  color: var(--primary-gold);
  margin-bottom: 0.1rem; /* Smaller gap below the brand name */
  line-height: 1;
  gap: 0.2rem; /* Controls spacing */
  margin: 0;
  padding: 0;
  line-height: 1;
  text-align: center;        /* align text inside left */
  flex: 1;                 /* optionally take available space */
}

.footer-logo {
    height: 80px;
    width: auto;
    object-fit: contain;
    margin-bottom: 15px;
    transition: var(--transition);
}

.footer-logo:hover {
    transform: scale(1.02);
}

.footer-text {
    color: rgba(255, 255, 255, 0.8);
	
}

.footer-text p {
    font-variant: small-caps;
    font-size-adjust: 0.43;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin: 0;
font-size: 1.1rem;
}




/* Animations */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) rotate(45deg);
    }
    40% {
        transform: translateY(-10px) rotate(45deg);
    }
    60% {
        transform: translateY(-5px) rotate(45deg);
    }
}


/* Mobile Responsive Design */


/* Hamburger Menu Styles */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-gold);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Large tablets and small desktops */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .hero-headline {
        font-size: clamp(2.5rem, 5vw, 3.5rem);
    }
    
    .opportunities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Tablets */
@media (max-width: 968px) {
    /* Navigation - Show hamburger menu */
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(10, 9, 48, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        padding-top: 80px;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        font-size: 1.5rem;
        padding: 1rem 2rem;
        width: auto;
        text-align: center;
    }

    /* Hamburger animation when active */
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    /* Layout adjustments - stack sections vertically */
    .section-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .opportunities-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Hero adjustments */
    .hero-benefits {
        text-align: center;
        max-width: 100%;
    }

    .hero-cta {
        padding: 1.5rem;
        margin: 0 1rem;
    }

    .form-group {
        flex-direction: column;
        gap: 1rem;
    }

    .subscribe-btn {
        width: 100%;
    }

    /* Contact form adjustments */
    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .credentials-box,
    .contact-form-container {
        padding: 2rem;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }

    /* Footer adjustments */
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
}

/* Mobile devices */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    /* Navigation adjustments */
    .navbar {
        padding: 0.5rem 0;
    }

    .nav-container {
        padding: 0 1rem;
    }

    /* Hero section */
    .hero {
        background-attachment: scroll;
        min-height: 90vh;
    }

    .hero-content {
        padding-top: 90px;
    }

    .hero-headline {
        font-size: clamp(2rem, 6vw, 3rem);
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .hero-subheadline {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .hero-text {
        max-width: 100%;
        padding: 0;
		background: none !important;
        background-color: transparent !important;
    }

    .hero-benefits {
        margin-bottom: 2rem;
    }

    .benefit-item {
        font-size: 1rem;
        gap: 0.75rem;
    }

    .hero-cta {
        padding: 1.5rem 1rem;
        margin: 0;
    }

    .cta-title {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }

    /* About section */
    .about {
        padding: 4rem 0;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .about-text {
        font-size: 1rem;
        line-height: 1.6;
    }

    .credentials-box {
        padding: 1.5rem;
        margin-top: 2rem;
    }

    .credentials-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .credential-item {
        padding: 0.75rem;
        margin-bottom: 1rem;
    }

    .credential-item strong {
        font-size: 1.1rem;
    }

    /* Opportunities section */
    .opportunities {
        padding: 4rem 0;
    }

    .opportunity-card {
        margin: 0;
    }

    .card-image {
        height: 200px;
    }

    .card-content {
        padding: 1.5rem;
    }

    .card-title {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .investment-details {
        padding: 0.75rem;
        margin-bottom: 1rem;
    }

    .value {
        font-size: 1.1rem;
    }

    .value.roi {
        font-size: 1.3rem;
    }

    /* Services section */
    .services {
        padding: 4rem 0;
    }

    .service-card {
        padding: 2rem 1rem;
    }

    .service-title {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .service-features {
        font-size: 0.95rem;
    }

    /* Contact section */
    .contact {
        padding: 4rem 0;
    }

    .contact-description {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

    .contact-info {
        padding: 1.5rem;
    }

    .contact-item {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .contact-form-container {
        padding: 2rem 1.5rem;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        padding: 0.875rem;
        font-size: 1rem;
    }

    .submit-btn {
        padding: 1rem;
        font-size: 1rem;
    }

    /* Footer */
    .footer {
        padding: 2rem 0;
    }

    .footer-brand h1 {
        font-size: 1.5rem;
    }

    .logo-tagline {
        font-size: 0.75rem;
    }

    .footer-text {
        font-size: 0.9rem;
        margin-top: 1rem;
    }
	
	.cagr-line {
    text-align: center;
    font-weight: 400;
    font-size: 1rem;
    color: var(--primary-gold);
    border-top: 1.5px solid #0d47a1;
    padding-top: 8px;
    margin-top: 0;
    max-width: 160px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    margin-bottom: 0.4rem;
  }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }

    /* Navigation */
    .nav-container {
        padding: 0 0.75rem;
    }

    .nav-brand h1 {
        font-size: 1.25rem;
    }

    .logo-tagline {
        font-size: 0.65rem;
    }

    /* Hero section */
    .hero-content {
        padding-top: 80px;
    }

    .hero-headline {
        font-size: clamp(1.75rem, 5vw, 2.5rem);
        line-height: 1.1;
    }

    .hero-subheadline {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-benefits {
        margin-bottom: 1.5rem;
    }

    .benefit-item {
        font-size: 0.95rem;
        gap: 0.5rem;
        margin-bottom: 0.75rem;
    }

    .hero-cta {
        padding: 1.25rem 0.75rem;
    }

    .cta-title {
        font-size: 1.25rem;
    }

    .email-input,
    .subscribe-btn {
        padding: 0.875rem;
        font-size: 0.95rem;
    }

    /* Sections padding */
    .about,
    .opportunities,
    .services,
    .contact {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    /* About section */
    .credentials-box {
        padding: 1.25rem;
    }

    .credentials-title {
        font-size: 1.3rem;
    }

    .credential-item {
        padding: 0.625rem;
    }

    .credential-item strong {
        font-size: 1rem;
    }

    /* Opportunities */
    .opportunities-grid {
        gap: 1.5rem;
    }

    .card-image {
        height: 180px;
    }

    .card-content {
        padding: 1.25rem;
    }

    .card-title {
        font-size: 1.2rem;
    }

    .investment-details {
        padding: 0.625rem;
        gap: 1rem;
    }

    .value {
        font-size: 1rem;
    }

    .value.roi {
        font-size: 1.2rem;
    }

    .features-list li {
        font-size: 0.9rem;
        margin-bottom: 0.375rem;
    }

    /* Services */
    .services-grid {
        gap: 1.5rem;
    }

    .service-card {
        padding: 1.5rem 1rem;
    }

    .icon-bg {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .service-title {
        font-size: 1.2rem;
    }

    .service-features li {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }
	
	.cagr-line {
    text-align: center;
    font-weight: 400;
    font-size: 1rem;
    color: var(--primary-gold);
    border-top: 1.5px solid #0d47a1;
    padding-top: 8px;
    margin-top: 0;
    max-width: 160px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    margin-bottom: 0.4rem;
    }

    /* Contact */
    .contact-content {
        gap: 2rem;
    }

    .contact-form-container {
        padding: 1.5rem 1rem;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        padding: 0.75rem;
        font-size: 0.95rem;
    }

    .contact-form textarea {
        min-height: 100px;
    }

    /* Footer */
    .footer {
        padding: 1.5rem 0;
    }

    .footer-brand h1 {
        font-size: 1.25rem;
    }

    .logo-tagline {
        font-size: 0.625rem;
    }

    .footer-text {
        font-size: 0.85rem;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .hero-headline {
        font-size: clamp(1.5rem, 4.5vw, 2.25rem);
    }

    .hero-subheadline {
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .card-image {
        height: 160px;
    }

    .opportunity-card,
    .service-card {
        margin: 0 0.5rem;
    }

    .hero-cta,
    .credentials-box,
    .contact-form-container {
        margin: 0 0.5rem;
    }
	
	.cagr-line {
    text-align: center;
    font-weight: 400;
    font-size: 1rem;
    color: var(--primary-gold);
    border-top: 1.5px solid #0d47a1;
    padding-top: 8px;
    margin-top: 0;
    max-width: 160px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    margin-bottom: 0.4rem;
    }
}

/* Landscape orientation adjustments */
@media (max-width: 768px) and (orientation: landscape) {
    
	.hero {
        min-height: 100vh;
    }

    .hero-content {
        padding-top: 60px;
    }

    .hero-headline {
        font-size: clamp(1.5rem, 4vw, 2.5rem);
    }

    .nav-menu.active {
        padding-top: 60px;
    }
}

/* Performance Optimizations for Mobile */
@media (max-width: 768px) {
    /* Disable parallax and heavy animations on mobile */
    .parallax {
        transform: none !important;
    }

    /* Reduce animation complexity */
    .opportunity-card:hover,
    .service-card:hover {
        transform: none;
    }

    /* Optimize images */
    .card-image img {
        transform: none;
    }

    .opportunity-card:hover .card-image img {
        transform: none;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .scroll-indicator,
    .hero-cta,
    .contact-form,
    .nav-toggle {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .hero {
        background: white !important;
    }
    
    .hero-headline,
    .hero-subheadline {
        color: black !important;
    }
}