/* ========================================
   BREEZELINE INTERIORS - ABOUT PAGE
   ======================================== */

/* CSS Variables */
:root {
    --black: #000000;
    --gold: #d4af37;
    --gold-light: #e5c158;
    --gold-dark: #b8941f;
    --white: #ffffff;
    --gray-light: #cccccc;
    --gray: #666666;
    --gray-dark: #333333;
    --overlay: rgba(0, 0, 0, 0.6);
    --overlay-heavy: rgba(0, 0, 0, 0.75);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--black);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ========================================
   NAVIGATION - MATCHING INDEX
   ======================================== */

header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    animation: slideDown 0.8s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.8rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo and Company Name Container */
.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
    min-width: auto;
}

.logo {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(212, 175, 55, 0.08);
    border-radius: 8px;
    padding: 5px;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Company Name */
.company-name {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
    line-height: 1;
}

.name-main {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 2px;
    display: block;
}

.name-sub {
    font-size: 0.65rem;
    letter-spacing: 2px;
    color: var(--white);
    font-weight: 500;
    display: block;
}

/* Navigation Links */
.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
    flex: 1;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 400;
    position: relative;
    padding: 0.5rem 0;
    letter-spacing: 0.5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transition: width 0.4s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a.cta-link {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--black);
    padding: 0.7rem 1.5rem;
    border-radius: 5px;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.nav-links a.cta-link::after {
    display: none;
}

.nav-links a.cta-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

/* ========================================
   DROPDOWN NAVIGATION
   ======================================== */

.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.98);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 5px;
    padding: 1rem 0;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.8rem 1.5rem;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 400;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    border-left-color: var(--gold);
    padding-left: 2rem;
}

.dropdown-menu a::after {
    display: none;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    flex-shrink: 0;
    background: none;
    border: none;
    padding: 0;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--gold);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ========================================
   PAGE HERO
   ======================================== */

.page-hero {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 70px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, var(--overlay), var(--overlay-heavy));
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    animation: fadeUp 1.2s ease-out 0.3s both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.page-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.5);
}

.page-subtitle {
    font-size: 1.3rem;
    color: var(--white);
    font-weight: 300;
    letter-spacing: 2px;
}

/* ========================================
   COMPANY STORY
   ======================================== */

.company-story {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--black) 0%, #0a0a0a 100%);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.story-content h2 {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.story-content .lead {
    font-size: 1.3rem;
    color: var(--gold-light);
    margin-bottom: 1.5rem;
    font-weight: 500;
    line-height: 1.8;
}

.story-content p {
    font-size: 1.1rem;
    color: var(--gray-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.story-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
}

.story-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.story-image:hover img {
    transform: scale(1.08);
}

.image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    border: 3px solid var(--gold);
    border-radius: 10px;
    z-index: -1;
}

/* ========================================
   VISION & MISSION
   ======================================== */

.vision-mission {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--gray-dark), var(--black));
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.vm-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 3rem 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.4s ease;
}

.vm-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.vm-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 2rem;
}

.vm-card h3 {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.vm-card p {
    font-size: 1.1rem;
    color: var(--gray-light);
    line-height: 1.8;
}

/* ========================================
   VALUES SECTION
   ======================================== */

.values-section {
    padding: 8rem 0;
    background-color: var(--black);
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--gray-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}

.value-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    border: 1px solid transparent;
    transition: all 0.4s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.05);
}

.value-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.value-card h3 {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--gray-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ========================================
   SERVICES OVERVIEW
   ======================================== */

.services-overview {
    padding: 8rem 0;
    background: linear-gradient(to bottom, var(--black), var(--gray-dark));
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.service-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    background-color: var(--gray-dark);
    transition: transform 0.4s ease;
}

.service-item:hover {
    transform: translateY(-10px);
}

.service-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-item:hover .service-image img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--overlay-heavy));
}

.service-content {
    padding: 2rem;
}

.service-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.service-content h3 {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.service-content p {
    color: var(--gray-light);
    line-height: 1.7;
}

/* ========================================
   PROCESS SECTION
   ======================================== */

.process-section {
    padding: 8rem 0;
    background-color: var(--black);
}

.process-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 50px;
    top: 100px;
    width: 2px;
    height: calc(100% + 30px);
    background: linear-gradient(to bottom, var(--gold), transparent);
}

.step-number {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    border: 3px solid var(--gold);
    border-radius: 50%;
    background-color: var(--black);
    position: relative;
    z-index: 10;
}

.step-content h3 {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.step-content p {
    font-size: 1.1rem;
    color: var(--gray-light);
    line-height: 1.8;
}

/* ========================================
   STATS SECTION
   ======================================== */

.stats-section {
    position: relative;
    padding: 8rem 0;
    background: url('https://images.unsplash.com/photo-1600607687644-c7171b42498b?w=1920&q=80') center/cover no-repeat;
}

.stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay-heavy);
}

.stats-grid {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.stat-card {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    border: 2px solid var(--gold);
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--gold);
    display: inline-block;
}

.stat-plus,
.stat-percent {
    font-size: 3rem;
    color: var(--gold);
    display: inline-block;
    margin-left: 5px;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--white);
    margin-top: 1rem;
    letter-spacing: 1px;
}

/* ========================================
   ABOUT CTA
   ======================================== */

.about-cta {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--gray-dark), var(--black));
}

.cta-content {
    text-align: center;
}

.cta-content h2 {
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.3rem;
    color: var(--gray-light);
    margin-bottom: 3rem;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-weight: 500;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.4s ease;
    border: none;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--black);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
}

/* ========================================
   FOOTER
   ======================================== */

footer {
    background: #0a0a0a;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding: 3rem 0 2rem;
    position: relative;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo .logo {
    width: 45px;
    height: 45px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 8px;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-logo .logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-name {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 1px;
}

.footer-left p {
    color: var(--gray);
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.admin-login {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: transparent;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 998;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: transparent;
    transition: all 0.3s ease;
    box-shadow: none;
    padding: 0;
}

/* ========================================
   ANIMATIONS
   ======================================== */

.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1024px) {
    .page-title {
        font-size: 3rem;
    }
    
    .story-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    nav {
        padding: 0.8rem 1rem;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        padding: 3rem 2rem;
        gap: 2rem;
        transition: right 0.4s ease;
        border-top: 1px solid rgba(212, 175, 55, 0.2);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        font-size: 1.2rem;
        width: 100%;
        text-align: center;
    }
    
    .hamburger {
        display: flex;
    }
    
    /* Mobile dropdown styles */
    .nav-dropdown {
        position: static;
    }
    
    .dropdown-menu {
        position: static;
        background: transparent;
        border: none;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding: 0;
        margin-top: 1rem;
        display: none;
    }
    
    .nav-dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-menu a {
        padding: 0.8rem 1rem;
        border-left: none;
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    }
    
    .dropdown-menu a:hover {
        padding-left: 1.5rem;
        border-left: none;
    }
    
    .page-hero {
        height: 50vh;
        margin-top: 50px;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    .company-story,
    .vision-mission,
    .values-section,
    .services-overview,
    .process-section,
    .stats-section,
    .about-cta {
        padding: 5rem 0;
    }
    
    .story-content h2,
    .section-header h2,
    .cta-content h2 {
        font-size: 2.2rem;
    }
    
    .story-image img {
        height: 400px;
    }
    
    .vm-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .process-step {
        grid-template-columns: 80px 1fr;
        gap: 2rem;
    }
    
    .step-number {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .process-step:not(:last-child)::after {
        left: 40px;
        top: 80px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-left {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .name-main {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }
    
    .name-sub {
        font-size: 0.6rem;
        letter-spacing: 1px;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }
    
    .story-content .lead {
        font-size: 1.1rem;
    }
    
    .story-content p {
        font-size: 1rem;
    }
    
    .story-image img {
        height: 300px;
    }
    
    .image-accent {
        width: 150px;
        height: 150px;
        bottom: -15px;
        right: -15px;
    }
    
    .vm-card,
    .value-card {
        padding: 2rem 1.5rem;
    }
    
    .vm-icon,
    .value-icon {
        font-size: 2.5rem;
    }
    
    .service-image {
        height: 250px;
    }
    
    .service-content {
        padding: 1.5rem;
    }
    
    .process-step {
        grid-template-columns: 70px 1fr;
        gap: 1.5rem;
    }
    
    .step-number {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .process-step:not(:last-child)::after {
        left: 35px;
        top: 70px;
    }
    
    .step-content h3 {
        font-size: 1.6rem;
    }
    
    .step-content p {
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-plus,
    .stat-percent {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
}