/* --- Variables & Reset --- */
:root {
    --primary-black: #000000;
    --primary-yellow: #FFD700; /* Gold/Yellow */
    --hover-yellow: #E6C200;
    --primary-white: #FFFFFF;
    --text-dark: #333333;
    --text-light: #666666;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--primary-white);
    color: var(--text-dark);
    line-height: 1.6;
}

/* --- Utilities --- */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a { text-decoration: none; transition: 0.3s; }
img { max-width: 100%; height: auto; display: block; }

/* --- Buttons --- */
.btn {
    display: inline-block;
    background-color: var(--primary-yellow);
    color: var(--primary-black);
    padding: 12px 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: var(--hover-yellow);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

/* --- Header --- */
.site-header {
    background-color: var(--primary-black);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo a {
    color: var(--primary-white);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
}

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

.main-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 20px;
}

.main-nav a {
    color: var(--primary-white);
    font-weight: 400;
    font-size: 0.9rem;
}

.main-nav .btn-nav {
    color: var(--primary-black); /* Ensure button text is black */
    padding: 8px 20px;
    font-size: 0.85rem;
}

/* --- Hero Section --- */
.hero {
    background-image: url('images/hero-hyderabad.jpg');
    background-size: cover;
    background-position: center;
    height: 80vh; /* Takes up 80% of screen height */
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay to make text pop */
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--primary-white);
    max-width: 800px;
    padding: 20px;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #f0f0f0;
}

/* --- Features Section --- */
.features {
    padding: 80px 0;
    background-color: var(--primary-white);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary-black);
}

.divider {
    width: 60px;
    height: 3px;
    background-color: var(--primary-yellow);
    margin: 15px auto 0;
}

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

.card {
    text-align: center;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    transition: 0.3s;
}

.card:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.card img {
    border-radius: 4px;
    margin-bottom: 20px;
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.card h3 {
    margin-bottom: 15px;
    color: var(--primary-black);
}

/* --- About Section --- */
.about-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.grid-2-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image img {
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.about-text h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-black);
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-light);
}

/* --- CTA Banner --- */
.cta-banner {
    background-color: var(--primary-black);
    color: var(--primary-white);
    text-align: center;
    padding: 60px 0;
}

.cta-banner h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--primary-yellow);
}

.cta-banner p {
    margin-bottom: 30px;
    color: #ccc;
}

/* --- Footer --- */
.site-footer {
    background-color: #111; /* Slightly lighter than pure black */
    color: var(--primary-white);
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 20px;
}

.footer-brand h3 {
    color: var(--primary-yellow);
    font-family: var(--font-heading);
    margin-bottom: 10px;
}

.footer-links {
    margin-top: 20px;
}

.footer-links a {
    color: #ccc;
    margin: 0 10px;
    font-size: 0.9rem;
}

.footer-links a:hover { color: var(--primary-yellow); }

.copyright {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    font-size: 0.8rem;
    color: #777;
}

/* --- START OF FILE style.css APPEND --- */

/* --- Internal Page Specifics --- */

/* Smaller Hero for internal pages */
.page-hero {
    background-image: url('images/hero-hyderabad.jpg'); /* Reusing hero image, or use a specific one */
    background-size: cover;
    background-position: center;
    height: 40vh; /* Shorter than main hero */
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

/* Specific Content Section Styling */
.content-section {
    padding: 80px 0;
}

.bg-light {
    background-color: #f9f9f9;
}

.section-heading {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--primary-black);
    margin-bottom: 20px;
}

.intro-text {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 30px auto 0;
    color: var(--text-dark);
}

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

/* Highlight Box for "Rights" statement */
.highlight-box {
    background-color: var(--primary-white);
    border-left: 4px solid var(--primary-yellow);
    padding: 20px;
    margin-top: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    font-style: italic;
    color: var(--text-dark);
}

/* Guidelines / Rules Cards */
.mt-4 {
    margin-top: 40px;
}

.sub-text {
    margin-top: 15px;
    color: var(--text-light);
}

.rule-card {
    background: var(--primary-white);
    padding: 30px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    text-align: center;
    transition: 0.3s;
}

.rule-card:hover {
    border-color: var(--primary-yellow);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.rule-card h3 {
    font-family: var(--font-heading);
    color: var(--primary-black);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.rule-card p {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* Active Link State for Nav */
.main-nav a.active-link {
    color: var(--primary-yellow);
    font-weight: 700;
}

/* --- START OF FILE style.css APPEND (How It Works) --- */

/* --- Step Process Styling --- */
.step-content {
    padding: 20px;
}

.step-number {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--primary-yellow); /* Gold Number */
    font-weight: 700;
    opacity: 0.8;
    margin-bottom: 10px;
    line-height: 1;
}

.step-content h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary-black);
}

.feature-highlight {
    margin-top: 25px;
    background: #fff;
    border-left: 3px solid var(--primary-black);
    padding: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.feature-highlight h4 {
    color: var(--primary-black);
    margin-bottom: 5px;
}

/* Styled Lists */
.styled-list {
    list-style: none;
    margin-top: 20px;
}

.styled-list li {
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
}

.styled-list li::before {
    content: '•';
    color: var(--primary-yellow);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -5px;
}

/* Feature Cards (Specific to How It Works) */
.feature-card {
    background: var(--primary-white);
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 8px;
    text-align: center;
    transition: 0.3s;
}

.feature-card:hover {
    border-color: var(--primary-yellow);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.feature-card h3 {
    font-family: var(--font-heading);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

/* Guarantee & Safety Wrapper */
.guarantee-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.safety-column, .refund-column {
    background: #fff; /* fallback */
}

.safety-column h3, .refund-column h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary-black);
}

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

.check-list li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.check-list li::before {
    content: '✓';
    color: var(--primary-black);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Refund Policy Box */
.policy-box {
    background-color: #fffbeb; /* Very light yellow/gold */
    border: 1px solid var(--primary-yellow);
    padding: 20px;
    border-radius: 6px;
}

.policy-box p {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.policy-box p:last-child {
    margin-bottom: 0;
}

/* Responsive adjustments for How It Works */
@media (max-width: 768px) {
    .reverse-mobile {
        display: flex;
        flex-direction: column-reverse;
    }
    
    .guarantee-wrapper {
        grid-template-columns: 1fr;
    }
}

/* --- MEDIA QUERIES (Responsiveness) --- */

/* Tablet (iPad) adjustments */
@media (max-width: 992px) {
    .hero-content h1 { font-size: 2.2rem; }
    .grid-2-split { grid-template-columns: 1fr; text-align: center; }
    .about-image { margin-bottom: 30px; }
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .header-flex { flex-direction: column; gap: 15px; }
    
    .hero { height: 60vh; }
    .hero-content h1 { font-size: 1.8rem; }
    
    .grid-3 { grid-template-columns: 1fr; }
    
    .main-nav ul { gap: 15px; }
    .btn-large { width: 100%; padding: 15px; }
    
    .about-section, .features { padding: 50px 0; }
}