/* ============================================
   EnerLogic Website Styles
   Color Scheme: #2e5a6f (Primary), #f2d115 (Secondary)
   ============================================ */

/* Audiowide Font - Self-hosted */
@font-face {
    font-family: 'Audiowide';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('fonts/audiowide.ttf') format('truetype');
}

:root {
    --primary-color: #2e5a6f;
    --secondary-color: #f2d115;
    --primary-dark: #1e3f4f;
    --primary-light: #4a7a8f;
    --secondary-dark: #d4b810;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --text-lighter: #999999;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 4px 20px rgba(46, 90, 111, 0.1);
    --shadow-hover: 0 8px 30px rgba(46, 90, 111, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

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

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

/* ============================================
   Navigation
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(46, 90, 111, 0.1);
}

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

.nav-brand .logo-link {
    text-decoration: none;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-brand .logo-link .logo-text {
    color: inherit; /* Allow child spans to use their own colors */
}

.logo-image {
    height: 67.5px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
    flex-shrink: 0;
}

.logo-text {
    font-family: 'Audiowide', cursive;
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
}

.logo-ener {
    color: #2e5a6f !important;
}

.logo-logic {
    color: #f2d115 !important;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-item {
    margin-left: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--secondary-color);
}

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

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: var(--shadow-hover);
    border-radius: 8px;
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
}

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

.dropdown-item {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 0.9rem;
}

.dropdown-item:hover {
    background: var(--bg-light);
    color: var(--primary-color);
    padding-left: 1.75rem;
}

.btn-nav {
    background: var(--primary-color);
    color: white !important;
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-nav:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-nav::after {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

/* ============================================
   Energy Price Ticker
   ============================================ */

.energy-ticker {
    position: fixed;
    top: 99.5px; /* Start exactly where navbar ends (logo 67.5px + padding top 16px + padding bottom 16px = 99.5px) */
    left: 50%;
    transform: translateX(-50%);
    display: inline-block;
    width: auto;
    min-width: auto;
    max-width: none;
    background: var(--secondary-color);
    color: #000000;
    padding: 0.25rem 0.4rem;
    z-index: 998;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    border-radius: 0 0 8px 8px;
    border-top: none;
    overflow: visible;
}

.ticker-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    width: auto;
}

.ticker-row {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    font-weight: 500;
    flex-wrap: nowrap;
    white-space: nowrap;
    overflow: visible;
    width: auto;
}

.ticker-label {
    font-weight: 600;
    color: #000000;
    flex-shrink: 0;
    margin-right: 0.15rem;
}

/* Add colon to label on desktop/tablet */
.ticker-label::after {
    content: ":";
}

.ticker-item {
    color: #000000;
    white-space: nowrap;
    flex-shrink: 0;
}

.ticker-item strong {
    color: #000000;
    font-weight: 600;
}

.ticker-item .price {
    color: #000000;
    font-weight: 700;
    font-size: 0.9rem;
}

.ticker-separator {
    color: rgba(0, 0, 0, 0.4);
    font-weight: 300;
    flex-shrink: 0;
    margin: 0 0.1rem;
}

@media (max-width: 968px) {
    .energy-ticker {
        display: inline-block;
        width: auto;
        min-width: auto;
        max-width: none;
        top: 89px; /* Tablet navbar height: logo 57px + padding 16px top + 16px bottom = 89px */
        padding: 0.2rem 0.35rem;
    }
    
    .ticker-content {
        gap: 0.25rem;
    }
    
    .ticker-row {
        font-size: 0.75rem;
        gap: 0.3rem;
    }
}

@media (max-width: 768px) {
    .energy-ticker {
        display: inline-block;
        width: auto;
        min-width: auto;
        max-width: 95%;
        border-radius: 0 0 8px 8px;
        top: 80px; /* Mobile navbar height: logo 48px + padding 16px top + 16px bottom = 80px */
        padding: 0.2rem 0.3rem;
    }
    
    .ticker-content {
        gap: 0.2rem;
    }
    
    .ticker-row {
        font-size: 0.65rem;
        gap: 0.25rem;
    }
    
    /* Hide "c/kWh" unit text after each price on mobile to reduce ticker size */
    .ticker-unit {
        display: none;
    }
    
    /* Show label on mobile and add "(c/kWh):" to it */
    .ticker-label {
        display: inline;
        margin-right: 0.1rem;
    }
    
    /* Override desktop colon and add " (c/kWh):" after the label text on mobile */
    .ticker-label::after {
        content: " (c/kWh):";
    }
    
    .ticker-separator {
        margin: 0 0.2rem;
    }
}

/* ============================================
   Hero Section
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px; /* Increased top padding to account for navbar + ticker */
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    z-index: -2;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(242, 209, 21, 0.1) 0%, transparent 50%);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    color: white;
    max-width: 800px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.title-line {
    display: block;
}

.title-line.highlight {
    color: var(--secondary-color);
}

.typing-text {
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
}

.typing-text::after {
    content: '|';
    color: var(--secondary-color);
    animation: blink 1s infinite;
    margin-left: 2px;
}

@keyframes blink {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--text-dark);
}

.btn-primary:hover {
    background: var(--secondary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(242, 209, 21, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    opacity: 0.7;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ============================================
   Section Headers
   ============================================ */

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(242, 209, 21, 0.1);
    color: var(--primary-color);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.services .section-header {
    margin-bottom: 2.5rem;
}

.services .section-header h2 {
    font-size: 2.2rem;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================
   Services Preview
   ============================================ */

.services-preview {
    padding: 100px 0;
    background: var(--bg-white);
}

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

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

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

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.8rem;
}

/* Individual icon colors */
.service-icon.icon-analysis {
    color: #00b4d8;
    /* Bright blue */
}

.service-icon.icon-audits {
    color: #ffd60a;
    /* Bright yellow */
}

.service-icon.icon-optimisation {
    color: #ff6b9d;
    /* Pink */
}

.service-icon.icon-sustainability {
    color: #06ffa5;
    /* Bright green */
}

.service-icon.icon-procurement {
    color: #ff9500;
    /* Bright orange */
}

.service-icon.icon-compliance {
    color: #a855f7;
    /* Purple */
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 1rem;
    color: var(--primary-dark);
}

/* ============================================
   Why Choose Us
   ============================================ */

.why-choose {
    padding: 100px 0;
    background: var(--bg-light);
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.feature-item i {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.feature-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.feature-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.why-choose-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-hover);
    text-align: center;
    max-width: 350px;
    width: 100%;
}

.visual-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: var(--text-dark);
}

.visual-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.visual-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.visual-card p {
    color: var(--text-light);
}

/* ============================================
   Process Section
   ============================================ */

.process {
    padding: 100px 0;
    background: var(--bg-white);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    position: relative;
}

.process-step {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 1;
}

.step-number::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgba(46, 90, 111, 0.1);
    border-radius: 50%;
    top: -10px;
    left: -10px;
    z-index: -1;
}

.process-step h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.process-step p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Process Step Number Gradients - Yellow to Orange */
.process-step:nth-child(1) .step-number {
    background: linear-gradient(135deg, var(--secondary-color), #f5c542);
    color: var(--text-dark);
}

.process-step:nth-child(2) .step-number {
    background: linear-gradient(135deg, #f5c542, #f8b02e);
    color: var(--text-dark);
}

.process-step:nth-child(3) .step-number {
    background: linear-gradient(135deg, #f8b02e, #fb9b19);
    color: white;
}

.process-step:nth-child(4) .step-number {
    background: linear-gradient(135deg, #fb9b19, #ff8500);
    color: white;
}

.process-step:nth-child(5) .step-number {
    background: linear-gradient(135deg, #ff8500, #ff6b00);
    color: white;
}

/* ============================================
   CTA Section
   ============================================ */

.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-section .btn-primary {
    background: var(--secondary-color);
    color: var(--text-dark);
}

/* ============================================
   Footer
   ============================================ */

.footer {
    background: var(--primary-dark);
    color: white;
    padding: 60px 0 20px;
}

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

.footer-logo {
    font-family: 'Audiowide', cursive;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.footer-section p {
    opacity: 0.9;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-section h4 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

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

.footer-section ul li i {
    margin-right: 0.5rem;
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--secondary-color);
    color: var(--text-dark);
    transform: translateY(-3px);
}

.acknowledgement-section {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
    text-align: center;
    margin-top: 3rem;
}

.acknowledgement-flags {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.flag-icon {
    width: 35px;
    height: 23px;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}

.acknowledgement-text {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    opacity: 0.8;
    font-size: 0.9rem;
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 968px) {
    .logo-image {
        height: 57px;
        max-width: 270px;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        padding: 2rem;
        box-shadow: var(--shadow);
        transition: left 0.3s ease;
    }

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

    .hamburger {
        display: flex;
    }

    /* Mobile Dropdown Menu Styles */
    .dropdown-menu {
        position: static;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        background: var(--bg-light);
        border-radius: 8px;
        margin-top: 0.5rem;
        transform: none;
        transition: max-height 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
    }

    .dropdown.active .dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 500px;
    }

    .dropdown-item {
        padding: 1rem 1.5rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .dropdown-item:last-child {
        border-bottom: none;
    }

    .nav-link .fa-chevron-down {
        transition: transform 0.3s ease;
    }

    .dropdown.active .nav-link .fa-chevron-down {
        transform: rotate(180deg);
    }

    .hero {
        padding: 140px 0 80px; /* Increased top padding: navbar (89px) + ticker (~32px) + spacing (19px) = 140px */
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .why-choose-content {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .logo-image {
        height: 48px;
        max-width: 225px;
    }
    
    .logo-text {
        font-size: 1.25rem;
    }
    
    .nav-brand .logo-link {
        gap: 0.5rem;
    }
    
    .hero {
        padding: 150px 0 80px; /* Increased top padding: navbar (80px) + ticker (~32px) + spacing (38px) = 150px */
    }
    
    .hero-title {
        font-size: 2rem;
    }

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

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

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

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

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

/* ============================================
   Animations
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.visual-card,
.stat {
    animation: fadeInUp 0.6s ease-out;
}

/* ============================================
   Contact Protection Styles
   ============================================ */

.email-obfuscated {
    cursor: pointer;
    color: var(--primary-color);
    text-decoration: underline;
    transition: all 0.3s ease;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.email-obfuscated:hover {
    color: var(--secondary-color);
    text-decoration: none;
}

.email-obfuscated.revealed {
    cursor: default;
    text-decoration: none;
    color: var(--primary-color);
}

.footer .email-obfuscated {
    color: white;
}

.footer .email-obfuscated:hover {
    color: var(--secondary-color);
}

.footer .email-obfuscated.revealed {
    color: white;
}

.phone-obfuscated {
    cursor: pointer;
    color: var(--primary-color);
    text-decoration: underline;
    transition: all 0.3s ease;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.phone-obfuscated:hover {
    color: var(--secondary-color);
    text-decoration: none;
}

.phone-obfuscated.revealed {
    cursor: default;
    text-decoration: none;
    color: var(--primary-color);
}

.footer .phone-obfuscated {
    color: white;
}

.footer .phone-obfuscated:hover {
    color: var(--secondary-color);
}

.footer .phone-obfuscated.revealed {
    color: white;
}

/* ============================================
   Refactored Styles (New)
   ============================================ */

.hero-small {
    min-height: auto;
    padding: 120px 0 40px; /* Increased top padding to account for navbar + ticker */
}

.hero-title-small {
    font-size: 3rem;
}

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

.max-w-none {
    max-width: none;
}

.about-intro-text {
    color: var(--text-light);
    line-height: 1.8;
    margin-top: 1.5rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mt-3 {
    margin-top: 3rem;
}

.mt-4 {
    margin-top: 4rem;
}

.mt-6 {
    margin-top: 6rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.service-detail-alt {
    background: var(--bg-light);
    padding: 4rem 0;
}

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

.btn-contact-item {
    margin-top: 1rem;
    display: inline-block;
}

.contact-form-title {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.btn-full-width {
    width: 100%;
}

.calendly-widget-style {
    min-width: 320px;
    width: 100%;
    height: 800px;
    min-height: 800px;
}