/* ============================================
   Valley Premier Properties - Main Stylesheet
   ============================================ */

/* CSS Variables - Corporate Sleek Theme */
:root {
    /* Corporate color palette - vibrant blues */
    --primary-color: #1a4d8c;        /* Rich royal blue */
    --primary-dark: #0d2847;         /* Deep navy */
    --primary-light: #3b7dd8;        /* Bright medium blue */
    --secondary-color: #38bdf8;      /* Vibrant sky blue */
    --secondary-dark: #0ea5e9;       /* Electric blue */
    --accent-color: #22d3ee;         /* Cyan accent */
    --accent-dark: #06b6d4;          /* Darker cyan */

    /* Text colors - high contrast for readability */
    --text-dark: #f0f6ff;            /* Soft white with blue tint */
    --text-medium: #94a8c8;          /* Blue-gray for secondary text */
    --text-light: #64789a;           /* Muted blue-gray */

    /* Background colors - dark theme */
    --bg-dark: #0b1019;              /* Main dark background */
    --bg-darker: #060a0f;            /* Even darker shade */
    --bg-light: #111827;             /* Lighter dark shade */
    --bg-gray: #1a2744;              /* Medium dark with blue tint */
    --bg-warm: #243352;              /* Slightly lighter blue-gray */
    --white: #0b1019;                /* Dark background (replaces white) */
    --white-pure: #FFFFFF;           /* Actual white for text */

    /* Accent highlights */
    --glow-blue: rgba(56, 189, 248, 0.15);
    --glow-strong: rgba(56, 189, 248, 0.25);

    /* Borders and shadows */
    --border-color: #1e3a5a;         /* Blue-tinted border */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 20px rgba(56, 189, 248, 0.15);

    --transition: all 0.3s ease;
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Open Sans', sans-serif;
}

/* Reset & Base Styles */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
    text-shadow: 0 0 30px rgba(56, 189, 248, 0.1);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--bg-dark);
    border-color: var(--secondary-color);
    font-weight: 700;
}

.btn-primary:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(56, 189, 248, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white-pure);
    border-color: var(--white-pure);
}

.btn-secondary:hover {
    background-color: var(--white-pure);
    color: var(--primary-color);
}

.btn-outline {
    background-color: transparent;
    color: var(--secondary-color);
    border-color: var(--secondary-color);
    text-shadow: 0 0 10px rgba(56, 189, 248, 0.3);
}

.btn-outline:hover {
    background-color: var(--secondary-color);
    color: var(--bg-dark);
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.4);
}

.btn-light {
    background-color: var(--white-pure);
    color: var(--primary-dark);
    border-color: var(--white-pure);
}

.btn-light:hover {
    background-color: rgba(255, 255, 255, 0.85);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Top Bar */
.top-bar {
    background-color: var(--bg-dark);
    color: var(--white-pure);
    padding: 10px 0;
    font-size: 13px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left span {
    margin-right: 25px;
}

.top-bar-left i {
    margin-right: 8px;
    color: var(--secondary-color);
}

.top-bar-right {
    display: flex;
    gap: 20px;
}

.portal-link {
    color: var(--white-pure);
    padding: 5px 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    font-weight: 500;
}

.portal-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--secondary-color);
}

.portal-link i {
    margin-right: 6px;
}

/* Header */
.main-header {
    background-color: var(--bg-dark);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
}

.logo-fallback {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 700;
    color: var(--white-pure);
    display: none;
}

/* Show fallback text if image fails to load */
.logo-img[src=""] + .logo-fallback,
.logo-img:not([src]) + .logo-fallback {
    display: block;
}

.logo-text {
    font-family: var(--font-primary);
    font-size: 26px;
    font-weight: 700;
    color: var(--white-pure);
    text-shadow: 0 0 20px rgba(56, 189, 248, 0.2);
}

.logo-accent {
    color: var(--secondary-color);
    text-shadow: 0 0 25px rgba(56, 189, 248, 0.5);
}

.logo-subtitle {
    font-size: 12px;
    color: var(--text-medium);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-top: -5px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-menu > li > a {
    display: block;
    padding: 12px 16px;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 500;
    color: var(--white-pure);
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active {
    color: var(--secondary-color);
}

.nav-menu > li > a.nav-cta {
    background-color: var(--secondary-color);
    color: var(--white-pure);
    border-radius: 4px;
    margin-left: 10px;
}

.nav-menu > li > a.nav-cta:hover {
    background-color: var(--secondary-dark);
}

.nav-menu > li > a i {
    font-size: 10px;
    margin-left: 4px;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--bg-gray);
    min-width: 220px;
    box-shadow: var(--shadow-lg);
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
    border: 1px solid var(--border-color);
}

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

.dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    font-size: 14px;
    color: var(--white-pure);
    border-bottom: 1px solid var(--border-color);
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

.dropdown-menu li a:hover {
    background-color: var(--bg-warm);
    color: var(--secondary-color);
    padding-left: 25px;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--white-pure);
    position: relative;
    transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--white-pure);
    transition: var(--transition);
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: url('../images/index.png') center center / cover no-repeat;
    filter: blur(3px);
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(30, 58, 95, 0.85) 0%, rgba(30, 58, 95, 0.6) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    color: var(--white-pure);
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--white-pure);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3), 0 0 40px rgba(56, 189, 248, 0.2);
}

.hero-content h1 span {
    color: var(--secondary-color);
    text-shadow: 0 0 30px rgba(56, 189, 248, 0.5);
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.9;
    line-height: 1.7;
}

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

/* Stats Section */
.stats-section {
    background-color: var(--bg-dark);
    padding: 50px 0;
    margin-top: -30px;
    position: relative;
    z-index: 10;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-icon {
    margin-bottom: 15px;
}

.stat-icon i {
    font-size: 36px;
    color: var(--secondary-color);
}

.stat-number {
    font-family: var(--font-primary);
    font-size: 48px;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1;
    margin-bottom: 10px;
    text-shadow: 0 0 25px rgba(56, 189, 248, 0.4);
}

.stat-label {
    font-size: 14px;
    color: var(--text-medium);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--white-pure);
    text-shadow: 0 0 30px rgba(56, 189, 248, 0.15);
}

.section-header p {
    font-size: 17px;
    color: var(--text-medium);
}

/* Intro Section */
.intro-section {
    background-color: var(--bg-dark);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.intro-lead {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.intro-content p {
    margin-bottom: 25px;
    color: var(--text-medium);
}

.intro-list {
    margin-bottom: 30px;
}

.intro-list li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.intro-list i {
    color: var(--accent-color);
    font-size: 18px;
}

.intro-image {
    position: relative;
}

.image-placeholder {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    height: 400px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white-pure);
}

.image-placeholder i {
    font-size: 80px;
    margin-bottom: 15px;
    opacity: 0.5;
}

.image-placeholder span {
    font-size: 14px;
    opacity: 0.7;
}

/* Pathways Section */
.pathways-section {
    background-color: var(--bg-light);
}

.pathways-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pathway-card {
    background-color: var(--bg-gray);
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.pathway-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.pathway-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pathway-icon i {
    font-size: 32px;
    color: var(--white-pure);
}

.pathway-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.pathway-card p {
    color: var(--text-medium);
    margin-bottom: 20px;
    font-size: 15px;
}

.pathway-link {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 14px;
    text-shadow: 0 0 15px rgba(56, 189, 248, 0.3);
}

.pathway-link:hover {
    color: var(--accent-color);
    text-shadow: 0 0 20px rgba(34, 211, 238, 0.5);
}

.pathway-link i {
    margin-left: 5px;
    transition: var(--transition);
}

.pathway-link:hover i {
    margin-left: 10px;
}

/* Services Section */
.services-section {
    background-color: var(--bg-dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    padding: 35px 30px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: var(--transition);
    background-color: var(--bg-light);
}

.service-card:hover {
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-md);
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: var(--bg-gray);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background-color: var(--secondary-color);
}

.service-icon i {
    font-size: 24px;
    color: var(--secondary-color);
    transition: var(--transition);
}

.service-card:hover .service-icon i {
    color: var(--white-pure);
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-medium);
    font-size: 15px;
    margin-bottom: 15px;
}

.service-link {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 14px;
    text-shadow: 0 0 15px rgba(56, 189, 248, 0.3);
}

.service-link:hover {
    color: var(--accent-color);
    text-shadow: 0 0 20px rgba(34, 211, 238, 0.5);
}

.services-cta {
    text-align: center;
    margin-top: 50px;
}

/* Areas Section */
.areas-section {
    background-color: var(--bg-light);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.area-card {
    background-color: var(--bg-gray);
    padding: 35px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.area-icon {
    margin-bottom: 15px;
}

.area-icon i {
    font-size: 36px;
    color: var(--secondary-color);
}

.area-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.area-card p {
    color: var(--text-medium);
    font-size: 15px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 80px 0;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 36px;
    color: var(--white-pure);
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3), 0 0 40px rgba(56, 189, 248, 0.2);
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--bg-dark);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    padding: 35px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background-color: var(--bg-light);
}

.testimonial-stars {
    margin-bottom: 15px;
}

.testimonial-stars i {
    color: var(--secondary-color);
    font-size: 16px;
}

.testimonial-text {
    font-style: italic;
    color: var(--white-pure);
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial-author strong {
    display: block;
    font-family: var(--font-primary);
    font-size: 16px;
}

.testimonial-author span {
    font-size: 14px;
    color: var(--text-medium);
}

/* Footer */
.main-footer {
    background-color: var(--primary-dark);
    color: var(--white);
    padding-top: 70px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 45px;
    width: auto;
}

.footer-logo .logo-fallback {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    display: none;
}

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

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 12px;
}

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

.footer-social a:hover {
    background-color: var(--secondary-color);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white-pure);
}

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

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-links ul li a:hover {
    color: var(--secondary-color);
}

.footer-contact address {
    font-style: normal;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-contact address p {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact address i {
    color: var(--secondary-color);
    margin-top: 4px;
}

.footer-contact address a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact address a:hover {
    color: var(--secondary-color);
}

.office-hours {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.office-hours strong {
    display: block;
    margin-bottom: 8px;
    color: var(--white-pure);
}

.footer-bottom {
    padding: 25px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-links a:hover {
    color: var(--secondary-color);
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 80px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 42px;
    color: var(--white-pure);
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3), 0 0 40px rgba(56, 189, 248, 0.2);
}

.page-hero p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb {
    margin-top: 20px;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.breadcrumb a:hover {
    color: var(--secondary-color);
}

.breadcrumb span {
    color: var(--secondary-color);
    font-size: 14px;
}

/* Page Content */
.page-content {
    padding: 60px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 50px;
}

.content-main h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.content-main h3 {
    font-size: 22px;
    margin: 30px 0 15px;
}

.content-main p {
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.8;
}

.content-main ul {
    margin-bottom: 25px;
}

.content-main ul li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-medium);
}

.content-main ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 25px;
    border: 1px solid var(--border-color);
}

.sidebar-widget h4 {
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--secondary-color);
}

.sidebar-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white-pure);
}

.sidebar-cta h4 {
    color: var(--white-pure);
    border-bottom-color: var(--secondary-color);
}

.sidebar-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.sidebar-cta .btn {
    width: 100%;
    text-align: center;
}

/* Contact Info Widget */
.contact-info-widget li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.contact-info-widget li:last-child {
    border-bottom: none;
}

.contact-info-widget i {
    color: var(--secondary-color);
    margin-top: 4px;
}

.contact-info-widget a {
    color: var(--text-medium);
}

.contact-info-widget a:hover {
    color: var(--secondary-color);
}

/* Forms */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: var(--font-secondary);
    font-size: 15px;
    transition: var(--transition);
    background-color: var(--bg-gray);
    color: var(--white-pure);
}

.form-control:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(0, 163, 224, 0.2);
}

.form-control::placeholder {
    color: var(--text-light);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-card {
    text-align: center;
    padding: 30px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: var(--transition);
    background-color: var(--bg-light);
}

.team-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--secondary-color);
}

.team-photo {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-photo i {
    font-size: 40px;
    color: var(--white-pure);
}

.team-card h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.team-card .role {
    color: var(--secondary-color);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

.team-card p {
    font-size: 14px;
    color: var(--text-medium);
}

/* Pricing Table */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.pricing-card {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 35px 25px;
    text-align: center;
    transition: var(--transition);
}

.pricing-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
    border-color: var(--secondary-color);
}

.pricing-card.featured {
    border-color: var(--secondary-color);
    position: relative;
}

.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--secondary-color);
    color: var(--white-pure);
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.pricing-amount {
    margin-bottom: 20px;
}

.pricing-amount .price {
    font-size: 42px;
    font-weight: 700;
    color: var(--secondary-color);
    text-shadow: 0 0 25px rgba(56, 189, 248, 0.4);
}

.pricing-amount .period {
    font-size: 14px;
    color: var(--text-medium);
}

.pricing-card ul {
    text-align: left;
    margin-bottom: 25px;
}

.pricing-card ul li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-card ul li:last-child {
    border-bottom: none;
}

.pricing-card ul li i {
    color: var(--accent-color);
}

/* FAQ Section */
.faq-item {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    background-color: var(--bg-light);
}

.faq-question {
    padding: 20px 25px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--bg-gray);
    transition: var(--transition);
    color: var(--white-pure);
}

.faq-question:hover {
    background-color: var(--bg-warm);
}

.faq-question i {
    color: var(--secondary-color);
    transition: var(--transition);
}

.faq-item.active .faq-question {
    background-color: var(--secondary-color);
    color: var(--white-pure);
}

.faq-item.active .faq-question i {
    color: var(--white-pure);
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 25px;
    max-height: 500px;
}

.faq-answer p {
    color: var(--text-medium);
}

/* Property Listings */
.property-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.property-card {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
    background-color: var(--bg-light);
}

.property-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-color);
}

.property-image {
    height: 200px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.property-image i {
    font-size: 50px;
    color: var(--white-pure);
    opacity: 0.5;
}

.property-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--accent-color);
    color: var(--white-pure);
    padding: 5px 12px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 600;
}

.property-details {
    padding: 25px;
}

.property-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(56, 189, 248, 0.3);
}

.property-price span {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-medium);
}

.property-title {
    font-size: 18px;
    margin-bottom: 10px;
}

.property-location {
    color: var(--text-medium);
    font-size: 14px;
    margin-bottom: 15px;
}

.property-location i {
    margin-right: 5px;
    color: var(--secondary-color);
}

.property-features {
    display: flex;
    gap: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.property-features span {
    font-size: 14px;
    color: var(--text-medium);
}

.property-features i {
    margin-right: 5px;
    color: var(--secondary-color);
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
    background-color: var(--bg-light);
}

.blog-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--secondary-color);
}

.blog-image {
    height: 180px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-image i {
    font-size: 40px;
    color: var(--white-pure);
    opacity: 0.5;
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.blog-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-card h3 a:hover {
    color: var(--secondary-color);
}

.blog-excerpt {
    font-size: 14px;
    color: var(--text-medium);
    margin-bottom: 15px;
}

.read-more {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 14px;
    text-shadow: 0 0 15px rgba(56, 189, 248, 0.3);
}

.read-more:hover {
    color: var(--accent-color);
    text-shadow: 0 0 20px rgba(34, 211, 238, 0.5);
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 50px;
}

.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.contact-info-card {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--border-color);
}

.contact-info-card i {
    font-size: 32px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.contact-info-card h4 {
    font-size: 16px;
    margin-bottom: 8px;
}

.contact-info-card p {
    color: var(--text-medium);
    font-size: 14px;
}

.contact-info-card a {
    color: var(--secondary-color);
}

.contact-form-wrapper {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.contact-form-wrapper h3 {
    margin-bottom: 25px;
}

/* Portal Page */
.portal-section {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.portal-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    border-radius: 50%;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portal-icon i {
    font-size: 40px;
    color: var(--white-pure);
}

.portal-section h2 {
    margin-bottom: 15px;
}

.portal-section p {
    color: var(--text-medium);
    margin-bottom: 30px;
}

.portal-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-about {
        grid-column: span 3;
        margin-bottom: 20px;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background-color: var(--bg-dark);
        flex-direction: column;
        align-items: stretch;
        padding: 80px 20px 30px;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
        overflow-y: auto;
        z-index: 999;
        border-left: 1px solid var(--border-color);
    }

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

    .nav-menu > li {
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu > li > a {
        padding: 15px;
    }

    .nav-menu > li > a.nav-cta {
        margin: 20px 0 0;
        text-align: center;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        background-color: var(--bg-gray);
        margin-top: 10px;
        border: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .mobile-toggle {
        display: block;
        z-index: 1000;
    }

    .mobile-toggle.active .hamburger {
        background-color: transparent;
    }

    .mobile-toggle.active .hamburger::before {
        top: 0;
        transform: rotate(45deg);
    }

    .mobile-toggle.active .hamburger::after {
        top: 0;
        transform: rotate(-45deg);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .intro-grid {
        grid-template-columns: 1fr;
    }

    .intro-image {
        order: -1;
    }

    .pathways-grid,
    .services-grid,
    .areas-grid,
    .testimonials-grid,
    .property-grid,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .content-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 25px;
        gap: 20px;
    }

    .stat-number {
        font-size: 36px;
    }

    .pathways-grid,
    .services-grid,
    .areas-grid,
    .testimonials-grid,
    .property-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-about {
        grid-column: span 2;
    }

    .footer-contact {
        grid-column: span 2;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .pricing-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 13px;
    }

    .hero {
        min-height: 500px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }

    section {
        padding: 50px 0;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .page-hero h1 {
        font-size: 32px;
    }

    .portal-buttons {
        flex-direction: column;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-primary {
    color: var(--primary-color);
}

.text-secondary {
    color: var(--secondary-color);
}

.bg-light {
    background-color: var(--bg-light);
}

.mt-20 {
    margin-top: 20px;
}

.mt-40 {
    margin-top: 40px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-40 {
    margin-bottom: 40px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}
